mirror of
https://github.com/Findus23/acronomy.git
synced 2024-09-19 15:33:45 +02:00
18 lines
321 B
YAML
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
|
|
|