From 8adfc9db7f15e36fed677be4a9c833ff2cdec0bc Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Wed, 29 Jan 2020 14:38:13 -0800 Subject: [PATCH] Tweak test order to get package tests to pass --- tests/conftest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/conftest.py b/tests/conftest.py index aaa8f735..a19ad18d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -20,6 +20,8 @@ def pytest_collection_modifyitems(items): move_to_front(items, "test_inspect_cli") move_to_front(items, "test_inspect_cli_writes_to_file") move_to_front(items, "test_spatialite_error_if_attempt_to_open_spatialite") + move_to_front(items, "test_package") + move_to_front(items, "test_package_with_port") def move_to_front(items, test_name):