File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -28,15 +28,25 @@ jobs:
28
28
runs-on : ubuntu-latest
29
29
env :
30
30
IMAGE : ${{ matrix.image }}
31
+ services :
32
+ iris :
33
+ image : ${{ matrix.image }}
34
+ env :
35
+ IRIS_USERNAME : sqlalchemy
36
+ IRIS_PASSWORD : sqlalchemy
37
+ IRIS_NAMESPACE : TEST
31
38
steps :
32
39
- uses : actions/checkout@v3
33
40
- run : docker pull $IMAGE
41
+ - name : Install requirements
42
+ run : |
43
+ pip install -U pip setuptools
44
+ pip install -r requirements-dev.txt
45
+ pip install -r requirements-iris.txt
46
+ pip install -e .
34
47
- name : Run Tests
35
- env :
36
- FOLDER : /home/irisowner/sqlalchemy-iris
37
48
run : |
38
- docker build --build-arg BASE=$IMAGE -t sqlalchemy-iris .
39
- docker run -i --rm sqlalchemy-iris
49
+ pytest --dburi iris://sqlalchemy:sqlalchemy@localhost:1972/TEST
40
50
41
51
deploy :
42
52
needs : test
You can’t perform that action at this time.
0 commit comments