Skip to content

Commit 27fb25b

Browse files
committed
finally run tests correctly
1 parent 18639ac commit 27fb25b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/python-publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- old
2929
- new
3030
driver:
31-
- community
31+
- iris
3232
- intersystems
3333
runs-on: ubuntu-latest
3434
services:
@@ -51,7 +51,7 @@ jobs:
5151
- name: Run Tests
5252
run: |
5353
docker exec iris iris session iris -U%SYS '##class(Security.Users).UnExpireUserPasswords("*")'
54-
tox -e py312-${{ matrix.engine }}-${{ matrix.driver }} -- --dburi iris://_SYSTEM:SYS@localhost:1972/USER
54+
tox -e py312-${{ matrix.engine }}-${{ matrix.driver }} -- --dburi iris+${{ matrix.driver }}://_SYSTEM:SYS@localhost:1972/USER
5555
deploy:
5656
needs: test
5757
if: github.event_name != 'pull_request'

tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[tox]
22
requires =
33
tox>=4
4-
env_list = py{310,311,312}-{old,new}-{community,intersystems}
4+
env_list = py{310,311,312}-{old,new}-{iris,intersystems}
55

66

7-
[testenv:py{38,39,310,311,312}-old-community]
7+
[testenv:py{38,39,310,311,312}-old-iris]
88
deps =
99
sqlalchemy<2
1010
-r requirements-dev.txt
1111
-r requirements-iris.txt
1212
-e.
1313
commands = {envpython} -m pytest {posargs} --driver iris
1414

15-
[testenv:py{38,39,310,311,312}-new-community]
15+
[testenv:py{38,39,310,311,312}-new-iris]
1616
deps =
1717
sqlalchemy>=2
1818
-r requirements-dev.txt

0 commit comments

Comments
 (0)