File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 6868 # with:
6969 # prefix-key: "mongo-db"
7070 # images: mongo:latest
71+
7172 - name : Start MongoDB in docker
7273 if : matrix.backend == 'mongodb'
7374 run : |
7778 sleep 5
7879 # show running containers
7980 docker ps -a
81+
8082 - name : Unit tests (DB)
8183 if : matrix.backend == 'mongodb'
8284 run : pytest -m "mongo" --cov=cachier --cov-report=term --cov-report=xml:cov.xml
9698 sleep 10
9799 docker ps -a
98100
101+ - name : Install SQL core test dependencies (SQL/Postgres)
102+ if : matrix.backend == 'postgres'
103+ run : |
104+ python -m pip install -e . -r tests/sql_requirements.txt
105+
99106 - name : Unit tests (SQL/Postgres)
100107 if : matrix.backend == 'postgres'
101108 env :
Original file line number Diff line number Diff line change 1313# to be able to run `python setup.py checkdocs`
1414collective.checkdocs
1515pygments
16- SQLAlchemy
17- psycopg2-binary
Original file line number Diff line number Diff line change 1+ # for SQL core tests
2+ SQLAlchemy
3+ psycopg2-binary
You can’t perform that action at this time.
0 commit comments