2020-01-14 22:35:40 +01:00
|
|
|
image: "python:3.7"
|
2020-01-14 22:28:08 +01:00
|
|
|
|
2020-01-14 22:35:40 +01:00
|
|
|
before_script:
|
|
|
|
- python --version
|
2020-01-14 22:28:08 +01:00
|
|
|
- pip install -r requirements.txt
|
2020-01-14 22:35:40 +01:00
|
|
|
|
|
|
|
stages:
|
|
|
|
- Static Analysis
|
2020-01-14 22:42:30 +01:00
|
|
|
- Test
|
2020-01-14 22:35:40 +01:00
|
|
|
|
|
|
|
flake8:
|
|
|
|
stage: Static Analysis
|
|
|
|
script:
|
|
|
|
- flake8 --max-line-length=120 bild/*.py
|
|
|
|
|
2020-01-15 00:39:03 +01:00
|
|
|
unit_test:
|
2020-01-15 00:42:05 +01:00
|
|
|
stage: Test
|
|
|
|
script:
|
|
|
|
- export PYTHONPATH="$PYTHONPATH:."
|
|
|
|
- python -c "import sys;print(sys.path)"
|
|
|
|
- pytest
|