python/.gitlab-ci.yml

15 lines
411 B
YAML
Raw Normal View History

2022-11-23 22:09:25 +01:00
pytest:
stage: test
image: python-latest
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
before_script:
- python3 -m pip install --upgrade pip
- pip3 install testing.postgresql
- pip3 install sqlalchemy
- pip3 install pgmock
- pip3 install psycopg2
- pip3 install unittest
- pip3 install pytest
script:
python3 -m unittest tests/*