1
0
Fork 0
mirror of https://github.com/Findus23/acronomy.git synced 2024-09-18 14:33:43 +02:00
acronomy/.gitlab-ci.yml

19 lines
321 B
YAML
Raw Normal View History

2022-06-06 23:39:19 +02:00
image: python:3.9
2021-01-25 21:40:30 +01:00
cache:
paths:
- ~/.cache/pip/
- ~/.cache/poetry/
before_script:
- python -V # Print out python version for debugging
2021-01-25 21:44:58 +01:00
- cp acronomy/secrets.test.py acronomy/secrets.py
2022-11-18 22:36:34 +01:00
- pip install poetry # required for now
2021-01-25 21:40:30 +01:00
- poetry install
test:
script:
- poetry run python manage.py test