Skip to content

Commit

Permalink
tests: reorder test execution order
Browse files Browse the repository at this point in the history
  • Loading branch information
tazlin committed Feb 19, 2024
1 parent 8d47c20 commit 3d79275
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,15 +138,17 @@ def pytest_collection_modifyitems(items):
"tests.model_managers.test_shared_model_manager",
"tests.test_mm_lora",
"tests.test_mm_ti",
"tests.test_inference",
]
MODULES_TO_RUN_LAST = [
"tests.test_inference",
"tests.test_horde_inference",
"tests.test_horde_inference_img2img",
"tests.test_horde_samplers",
"tests.test_horde_ti",
"tests.test_horde_lcm",
"tests.test_horde_lora",
"tests.test_horde_inference_controlnet",
"tests.test_horde_inference_painting",
"tests.test_horde_samplers",
]
module_mapping = {item: item.module.__name__ for item in items}

Expand Down

0 comments on commit 3d79275

Please sign in to comment.