Fix integration test skip logic

pull/351/head
Ivan Habunek 2023-04-06 21:35:12 +02:00
rodzic 5cb8967c84
commit cee289a391
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CDBD63C43A30BB95
1 zmienionych plików z 2 dodań i 3 usunięć

Wyświetl plik

@ -38,15 +38,14 @@ TRUMPET = str(Path(__file__).parent.parent.parent / "trumpet.png")
ASSETS_DIR = str(Path(__file__).parent.parent / "assets")
if not BASE_URL or not DATABASE_DSN:
pytest.skip("Skipping integration tests", allow_module_level=True)
# ------------------------------------------------------------------------------
# Fixtures
# ------------------------------------------------------------------------------
def create_app():
if not BASE_URL:
pytest.skip("Skipping integration tests, BASE_URL not set")
instance = api.get_instance(BASE_URL)
response = api.create_app(BASE_URL)
return App(instance["uri"], BASE_URL, response["client_id"], response["client_secret"])