argos-timewarrior/.gitlab-ci.yml

23 lines
507 B
YAML
Raw Normal View History

2021-12-13 07:36:01 +01:00
image: python:slim
2021-03-01 09:41:18 +01:00
test:pylama:
stage: test
only:
- master
- develop
before_script:
- if test -r requirements.txt; then pip install -r requirements.txt; fi
script:
if test -x "$(which pylama)"; then pylama *.py; fi
test:pytest:
stage: test
only:
- master
- develop
before_script:
- if test -r requirements.txt; then pip install -r requirements.txt; fi
script:
if test -x "$(which pytest)"; then pytest .; fi