diff --git a/.github/workflows/slow-checks.yml b/.github/workflows/slow-checks.yml index 3525d7d..96a015c 100644 --- a/.github/workflows/slow-checks.yml +++ b/.github/workflows/slow-checks.yml @@ -39,7 +39,8 @@ jobs: - name: Run Integration Tests id: run-integration-tests - run: poetry run -- nox -s test:integration -- --coverage --db-version ${MATRIX_EXASOL_VERSIONS} + # We need to set the backend explicity. Otherwise, integration tests are skipped. + run: poetry run -- nox -s test:integration -- --coverage --backend onprem --itde-db-version ${MATRIX_EXASOL_VERSIONS} env: MATRIX_EXASOL_VERSIONS: ${{ matrix.exasol_versions }} diff --git a/doc/changes/unreleased.md b/doc/changes/unreleased.md index 9ec3e26..a4fa387 100644 --- a/doc/changes/unreleased.md +++ b/doc/changes/unreleased.md @@ -2,6 +2,8 @@ ## Summary +In this release we fixed integration test and therefore code coverage reporting in CI. The switch `--backend onprem` was missing from slow tests, causing integration tests to be skipped. + ## Security Issues * #23: Fixed security issues by updating dependencies diff --git a/pyproject.toml b/pyproject.toml index 8577091..31cbf38 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,6 @@ dynamic = ["classifiers", "dependencies"] classifiers = [ "Development Status :: 5 - Production/Stable", - "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", diff --git a/test/integration/dialects/exasol/test_exasol_object_factory.py b/test/integration/dialects/exasol/test_exasol_object_factory.py index 0758862..7b90caa 100644 --- a/test/integration/dialects/exasol/test_exasol_object_factory.py +++ b/test/integration/dialects/exasol/test_exasol_object_factory.py @@ -28,7 +28,7 @@ def test_fully_qualified_name(factory): table = schema.create_table("CREATE_QUALIFIED_NAME_TEST_TABLE", ID="DECIMAL(12,0)") assert ( table.fully_qualified_name() - == '"CREATE_QUALIFIED_NAME_TEST_SCHEMA"."CREATE_QUALIFIED_NAME_TEST_TABLE"', + == '"CREATE_QUALIFIED_NAME_TEST_SCHEMA"."CREATE_QUALIFIED_NAME_TEST_TABLE"' )