From c692cd291111050483a32bea1ee08e994a0b781b Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 11 May 2019 15:03:52 -0700 Subject: [PATCH] Fix test ordering --- tests/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/conftest.py b/tests/conftest.py index 33f9a472..f9b84c4c 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -14,6 +14,7 @@ def pytest_collection_modifyitems(items): # Ensure test_black.py and test_inspect.py run first before any asyncio code kicks in move_to_front(items, "test_black") move_to_front(items, "test_inspect_cli") + move_to_front(items, "test_inspect_cli_writes_to_file") def move_to_front(items, test_name):