1
0
Fork 0
mirror of https://github.com/Findus23/acronomy.git synced 2024-09-16 12:13:44 +02:00
acronomy/.gitlab-ci.yml

18 lines
321 B
YAML

image: python:3.9
cache:
paths:
- ~/.cache/pip/
- ~/.cache/poetry/
before_script:
- python -V # Print out python version for debugging
- cp acronomy/secrets.test.py acronomy/secrets.py
- pip install poetry # required for now
- poetry install
test:
script:
- poetry run python manage.py test