File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ def pytest_collection_modifyitems(items):
55 xmlsec1 1.3.11, so no tests should use xmlsec after it runs.
66 """
77
8- def module_shutdown_tests_last (item ):
9- return int ('test_xmlsec.py::TestModule::test_initialize_module ' in item .nodeid )
8+ def module_init_shutdown_tests_last (item ):
9+ return int ('test_xmlsec.py::TestModule::test_init_shutdown_module ' in item .nodeid )
1010
11- items .sort (key = module_shutdown_tests_last )
11+ items .sort (key = module_init_shutdown_tests_last )
Original file line number Diff line number Diff line change 55class TestModule (base .TestMemoryLeaks ):
66 iterations = 0
77
8- def test_initialize_module (self ):
8+ def test_init_shutdown_module (self ):
99 """Check explicit initialization before final module shutdown.
1010
1111 This test is invoked last because shutdown is process-final: since
You can’t perform that action at this time.
0 commit comments