Skip to content

Commit 39dda86

Browse files
try this
1 parent 2511ff8 commit 39dda86

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ fast-test: venv ## Run an optimized, low-threshold test suite
8787
@$(ACTIVATE) && pytest --rootdir=. $(CORE_DIR)/tests --timeout 300 --random-order --durations 15 --random-order-bucket=module -vv -m "not slow and not flakey and not xfail and not skip"
8888

8989
slow-test: venv
90-
@$(ACTIVATE) && pytest --rootdir=. $(CORE_DIR)/tests --timeout 300 --random-order --durations 15 --random-order-bucket=module -vv -m slow
90+
@$(ACTIVATE) && pytest --rootdir=. $(CORE_DIR)/tests --timeout 300 --random-order --durations 15 --random-order-bucket=module -vv -m slow --random-order-seed=165038
9191

9292
flakey-test: venv
9393
@$(ACTIVATE) && pytest --rootdir=. $(CORE_DIR)/tests --timeout 300 --random-order --durations 15 --random-order-bucket=module -vv -m "flakey or xfail or skip"

core/tests/test_background_job.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,6 @@ def wait_for(predicate, timeout=6.0) -> None:
521521

522522

523523
@pytest.mark.flakey
524-
@pytest.mark.slow
525524
def test_dodging_order() -> None:
526525
with temporary_config_section(config, "just_pause.config"):
527526
with temporary_config_changes(
@@ -623,7 +622,6 @@ def action_to_do_after_od_reading(self) -> None:
623622

624623

625624
@pytest.mark.flakey
626-
@pytest.mark.slow
627625
def test_disabling_dodging() -> None:
628626
exp = "test_disabling_dodging"
629627

0 commit comments

Comments
 (0)