diff --git a/.github/workflows/python-integration-tests.yml b/.github/workflows/python-integration-tests.yml index a3b1e64..54b75da 100644 --- a/.github/workflows/python-integration-tests.yml +++ b/.github/workflows/python-integration-tests.yml @@ -38,6 +38,6 @@ jobs: ENGINE_URL: ${{ steps.setup.outputs.engine_url }} STOPPED_ENGINE_NAME: ${{ steps.setup.outputs.stopped_engine_name }} STOPPED_ENGINE_URL: ${{ steps.setup.outputs.stopped_engine_url }} - API_ENDPOINT: "api.dev.firebolt.io" + FIREBOLT_BASE_URL: "api.dev.firebolt.io" run: | pytest -o log_cli=true -o log_cli_level=INFO tests/integration diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2793c90..0b81e36 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: ENGINE_URL: ${{ steps.setup.outputs.engine_url }} STOPPED_ENGINE_NAME: ${{ steps.setup.outputs.stopped_engine_name }} STOPPED_ENGINE_URL: ${{ steps.setup.outputs.stopped_engine_url }} - API_ENDPOINT: "api.dev.firebolt.io" + FIREBOLT_BASE_URL: "api.dev.firebolt.io" run: | pytest -o log_cli=true -o log_cli_level=INFO tests/integration diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 284ebb7..ef7687f 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -2,14 +2,11 @@ from logging import getLogger from os import environ -import nest_asyncio from pytest import fixture from sqlalchemy import create_engine from sqlalchemy.engine.base import Connection, Engine from sqlalchemy.ext.asyncio import create_async_engine -nest_asyncio.apply() - LOGGER = getLogger(__name__) ENGINE_NAME_ENV = "ENGINE_NAME"