Skip to content

Commit 2ae16db

Browse files
authored
ci: fix environment variable name (#42)
1 parent fb65f76 commit 2ae16db

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/python-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ jobs:
3838
ENGINE_URL: ${{ steps.setup.outputs.engine_url }}
3939
STOPPED_ENGINE_NAME: ${{ steps.setup.outputs.stopped_engine_name }}
4040
STOPPED_ENGINE_URL: ${{ steps.setup.outputs.stopped_engine_url }}
41-
API_ENDPOINT: "api.dev.firebolt.io"
41+
FIREBOLT_BASE_URL: "api.dev.firebolt.io"
4242
run: |
4343
pytest -o log_cli=true -o log_cli_level=INFO tests/integration

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
ENGINE_URL: ${{ steps.setup.outputs.engine_url }}
4646
STOPPED_ENGINE_NAME: ${{ steps.setup.outputs.stopped_engine_name }}
4747
STOPPED_ENGINE_URL: ${{ steps.setup.outputs.stopped_engine_url }}
48-
API_ENDPOINT: "api.dev.firebolt.io"
48+
FIREBOLT_BASE_URL: "api.dev.firebolt.io"
4949
run: |
5050
pytest -o log_cli=true -o log_cli_level=INFO tests/integration
5151

tests/integration/conftest.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@
22
from logging import getLogger
33
from os import environ
44

5-
import nest_asyncio
65
from pytest import fixture
76
from sqlalchemy import create_engine
87
from sqlalchemy.engine.base import Connection, Engine
98
from sqlalchemy.ext.asyncio import create_async_engine
109

11-
nest_asyncio.apply()
12-
1310
LOGGER = getLogger(__name__)
1411

1512
ENGINE_NAME_ENV = "ENGINE_NAME"

0 commit comments

Comments
 (0)