Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
adjust successful/failing tests from unittest/test
  • Loading branch information
youknowone committed Feb 24, 2023
commit 4a357ee6e9aca99264dd28b460dfc4d801a34b2a
3 changes: 2 additions & 1 deletion Lib/unittest/test/test_async_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ async def __aenter__(self):
pass


VAR = contextvars.ContextVar('VAR', default=())
# TODO: RUSTPYTHON; used by following test suite
# VAR = contextvars.ContextVar('VAR', default=())


@unittest.skip("TODO: RUSTPYTHON; requires sys.get_coroutine_origin_tracking_depth()")
Expand Down
2 changes: 0 additions & 2 deletions Lib/unittest/test/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -1293,8 +1293,6 @@ def MockResultClass(*args):
expectedresult = (runner.stream, DESCRIPTIONS, VERBOSITY)
self.assertEqual(runner._makeResult(), expectedresult)

# TODO: RUSTPYTHON
@unittest.expectedFailure
@support.requires_subprocess()
def test_warnings(self):
"""
Expand Down