forked from catherinedevlin/ipython-sql
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9701a11
commit 6831873
Showing
3 changed files
with
75 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# CI - DB Integration - SqlAlchemy v1 is designed to run integration testing against SQLAlchemy v1. | ||
# Target database: Clickhouse | ||
# Sqlalchemy version: 1.4 (required by clickhouse-sqlalchemy) | ||
|
||
name: CI - DB Integration - SQLAlchemy V1 | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
database-sqlalchemy-v1-integration-test: | ||
strategy: | ||
matrix: | ||
python-version: ['3.11'] | ||
os: [ubuntu-latest] | ||
runs-on: ${{ matrix.os }} | ||
|
||
env: | ||
PLOOMBER_VERSION_CHECK_DISABLED: true | ||
PYTHON_VERSION: ${{ matrix.python-version }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
if : ${{ steps.secret-check.outputs.available == 'true' }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
|
||
- name: Install dependencies | ||
run: | | ||
nox --session test_integration_cloud --no-install --reuse-existing-virtualenvs | ||
- name: Upload failed images artifacts | ||
uses: actions/upload-artifact@v3 | ||
if: failure() | ||
with: | ||
name: failed-image-artifacts-integration-live ${{ matrix.os }} ${{ matrix.python-version }} | ||
path: result_images/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters