tweetdelete/.gitlab-ci.yml
2021-02-08 09:30:32 +01:00

21 lines
351 B
YAML

image: python:alpine
test:pylama:
stage: test
only:
- master
- develop
before_script:
- pip install -r requirements.txt
script:
pylama .
test:pytest:
stage: test
only:
- master
- develop
before_script:
- pip install -r requirements.txt
script:
pytest .