Tweak test order to get package tests to pass

This commit is contained in:
Simon Willison 2020-01-29 14:38:13 -08:00
commit 8adfc9db7f

View file

@ -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):