Skip to content

Commit f8846b1

Browse files
committed
iris as a service in ci
1 parent ff68e2c commit f8846b1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/python-publish.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@ jobs:
2828
- old
2929
- new
3030
runs-on: ubuntu-latest
31+
services:
32+
iris:
33+
image: ${{ matrix.image }}
34+
env:
35+
IRIS_USERNAME: test
36+
IRIS_PASSWORD: test
37+
ports:
38+
- 1972:1972
3139
steps:
3240
- uses: actions/checkout@v4
3341
- name: Set up Python
@@ -39,7 +47,7 @@ jobs:
3947
pip install tox
4048
- name: Run Tests
4149
run: |
42-
tox -e py311${{ matrix.engine }} -- --container ${{ matrix.image }}
50+
tox -e py311${{ matrix.engine }} -- --dburi iris://test:test@localhost:1972/USER
4351
deploy:
4452
needs: test
4553
if: github.event_name != 'pull_request'

0 commit comments

Comments
 (0)