Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove upper bound for NumPy #478

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:

jobs:
run-e2e-tests:
strategy:
matrix:
numpy-version: [ "1.*", "2.*" ]
runs-on: ubuntu-latest
environment: azure-prod
env:
Expand Down Expand Up @@ -53,7 +56,15 @@ jobs:
#----------------------------------------------
# run test suite
#----------------------------------------------
- name: Install NumPy version
run: |
source .venv/bin/activate
pip install "numpy==${{ matrix.numpy-version }}"
- name: Run e2e tests
run: poetry run python -m pytest tests/e2e
run: |
source .venv/bin/activate
python -m pytest tests/e2e
- name: Run SQL Alchemy tests
run: poetry run python -m pytest src/databricks/sqlalchemy/test_local
run: |
source .venv/bin/activate
python -m pytest src/databricks/sqlalchemy/test_local
Loading
Loading