Skip to content

Commit

Permalink
disable clickhouse integration tests (#995)
Browse files Browse the repository at this point in the history
* removed clickhouse

* removed clickhouse from nox

* Empty
  • Loading branch information
neelasha23 authored Feb 29, 2024
1 parent 5ba5c3a commit 47d8279
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 81 deletions.
46 changes: 0 additions & 46 deletions .github/workflows/ci-integration-db-sqlalchemy-v1.yaml

This file was deleted.

8 changes: 1 addition & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,6 @@ jobs:
exit 0
fi
integration-test-sqlalchemy-v1:
needs: [preliminary]
if: needs.preliminary.outputs.check_doc_modified == 'failure'
uses: ./.github/workflows/ci-integration-db-sqlalchemy-v1.yaml

integration-test-non-live:
needs: [preliminary]
if: needs.preliminary.outputs.check_doc_modified == 'failure'
Expand Down Expand Up @@ -196,7 +190,7 @@ jobs:
release:
needs: [test, test-sqlalchemy-v1, check, integration-test-non-live, integration-test-sqlalchemy-v1]
needs: [test, test-sqlalchemy-v1, check, integration-test-non-live]
if: startsWith(github.ref, 'refs/tags') && github.event_name != 'pull_request'
runs-on: ubuntu-latest

Expand Down
28 changes: 0 additions & 28 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,34 +150,6 @@ def test_integration_cloud(session):
)


@nox.session(
venv_backend=VENV_BACKEND,
python=environ.get("PYTHON_VERSION", "3.11"),
)
def test_integration_sqlachemy_v1(session):
"""
Run integration tests on SQLAlchemy v1
(NOTE: the clickhouse-sqlalchemy driver only works with
SQLAlchemy 1.x)
"""

# tests
_install(session, integration=True)
session.install(
"snowflake-sqlalchemy",
"redshift-connector",
"sqlalchemy-redshift",
"clickhouse-sqlalchemy",
)
session.run(
"pytest",
"src/tests/integration",
"-k",
"clickhouse",
"-v",
)


@nox.session(
venv_backend=VENV_BACKEND,
python=environ.get("PYTHON_VERSION", "3.11"),
Expand Down

0 comments on commit 47d8279

Please sign in to comment.