mirror of
https://github.com/ihabunek/toot.git
synced 2025-02-02 15:07:51 -05:00
Fix integration test skip logic
This commit is contained in:
parent
5cb8967c84
commit
cee289a391
@ -38,15 +38,14 @@ TRUMPET = str(Path(__file__).parent.parent.parent / "trumpet.png")
|
|||||||
ASSETS_DIR = str(Path(__file__).parent.parent / "assets")
|
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
|
# Fixtures
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
def create_app():
|
def create_app():
|
||||||
|
if not BASE_URL:
|
||||||
|
pytest.skip("Skipping integration tests, BASE_URL not set")
|
||||||
instance = api.get_instance(BASE_URL)
|
instance = api.get_instance(BASE_URL)
|
||||||
response = api.create_app(BASE_URL)
|
response = api.create_app(BASE_URL)
|
||||||
return App(instance["uri"], BASE_URL, response["client_id"], response["client_secret"])
|
return App(instance["uri"], BASE_URL, response["client_id"], response["client_secret"])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user