File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
run-e2e-tests :
10
+ strategy :
11
+ matrix :
12
+ numpy-version : [ "1.*", "2.*" ]
10
13
runs-on : ubuntu-latest
11
14
environment : azure-prod
12
15
env :
53
56
# ----------------------------------------------
54
57
# run test suite
55
58
# ----------------------------------------------
59
+ - name : Install NumPy version
60
+ run : |
61
+ source .venv/bin/activate
62
+ pip install "numpy==${{ matrix.numpy-version }}"
56
63
- name : Run e2e tests
57
- run : poetry run python -m pytest tests/e2e
64
+ run : |
65
+ source .venv/bin/activate
66
+ python -m pytest tests/e2e
58
67
- name : Run SQL Alchemy tests
59
- run : poetry run python -m pytest src/databricks/sqlalchemy/test_local
68
+ run : |
69
+ source .venv/bin/activate
70
+ python -m pytest src/databricks/sqlalchemy/test_local
You can’t perform that action at this time.
0 commit comments