Fix test ordering

pull/479/head
Simon Willison 2019-05-11 15:03:52 -07:00
rodzic a187c81e0c
commit c692cd2911
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

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