python/.gitlab-ci.yml

14 lines
376 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 pytest
script:
2022-11-23 22:11:56 +01:00
python3 -m pytest tests/*