python/.gitlab-ci.yml

15 lines
408 B
YAML
Raw Normal View History

2022-11-23 22:09:25 +01:00
pytest:
stage: test
2022-11-23 22:10:13 +01:00
image: python:3.9
2022-11-23 22:09:25 +01:00
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/*