Skip to content
Snippets Groups Projects
Verified Commit 191eebaf authored by Karel van Klink's avatar Karel van Klink :smiley_cat:
Browse files

pass extra env variable to tox, revert change to gso_app variable naming

parent 51e5ad13
No related branches found
No related tags found
1 merge request!96Make use of new callback step for external provisioning
Pipeline #84355 passed
...@@ -11,9 +11,9 @@ from gso.api import router as api_router ...@@ -11,9 +11,9 @@ from gso.api import router as api_router
def init_gso_app(settings: AppSettings) -> OrchestratorCore: def init_gso_app(settings: AppSettings) -> OrchestratorCore:
gso_app = OrchestratorCore(base_settings=settings) app = OrchestratorCore(base_settings=settings)
gso_app.include_router(api_router, prefix="/api") app.include_router(api_router, prefix="/api")
return gso_app return app
def init_cli_app() -> typer.Typer: def init_cli_app() -> typer.Typer:
......
...@@ -11,7 +11,7 @@ ban-relative-imports = true ...@@ -11,7 +11,7 @@ ban-relative-imports = true
markers = workflow markers = workflow
[testenv] [testenv]
passenv = DATABASE_URI_TEST,SKIP_ALL_TESTS passenv = DATABASE_URI_TEST,SKIP_ALL_TESTS,ENVIRONMENT_IGNORE_MUTATION_DISABLED
setenv = setenv =
OAUTH2_ACTIVE = False OAUTH2_ACTIVE = False
deps = deps =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment