We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f71824 commit e2fd214Copy full SHA for e2fd214
package/tests/conftest.py
@@ -269,6 +269,9 @@ def history_element(image, lower_threshold_profile):
269
def pytest_collection_modifyitems(session, config, items):
270
image_tests = [x for x in items if "PartSegImage" in str(x.fspath)]
271
core_tests = [x for x in items if "PartSegCore" in str(x.fspath)]
272
+ # put test_analysis_batch after all other core test to
273
+ # increase propability that more specyfic test will fail before
274
+ # batch integration tests
275
core_test_batch = [x for x in core_tests if "test_analysis_batch" in str(x.fspath)]
276
core_tests_non_batch = [x for x in core_tests if x not in core_test_batch]
277
core_tests = core_tests_non_batch + core_test_batch
0 commit comments