| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
thanks @bobby-palmer, this might be a tricky one 😄 there's two test cases now failing in Lib/test/test_typing.py: test_errors (test.test_typing.CollectionsCallableTests.test_errors) test_valid_uses (test.test_typing.ParamSpecTests.test_valid_uses) You can open that file and decorate them with unittest.expectedFailure to mark them as so. For test_errors you can add this function to CollectionsCallableTests: # TODO: RUSTPYTHON
@unittest.expectedFailure
def test_errors(self): # TODO: RUSTPYTHON, remove when this passes
super().test_errors() # TODO: RUSTPYTHON, remove when this passeswhile for test_valid_uses just mark the function directly since it isn't brought in via inheritance: # TODO: RUSTPYTHON
@unittest.expectedFailure
def test_valid_uses(self):
.... # function body unchanged |
Sorry, something went wrong.
|
@DimitrisJim thanks for the feedback! those tests should be fixed now |
Sorry, something went wrong.
There was a problem hiding this comment.
nice, guess this wasn't tricky after all. thanks!
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
#4564 updating _collections_abc.py to 3.11.2 for Python