Skip to content
Snippets Groups Projects
Commit 43b24038 authored by Malte Nyhuis's avatar Malte Nyhuis
Browse files

Update .gitlab-ci.yml file

parent 05da04b6
No related branches found
No related tags found
No related merge requests found
Pipeline #6947 failed
......@@ -29,13 +29,13 @@ build-job: # This job runs in the build stage, which runs first.
test: # This job runs in the build stage, which runs first.
stage: test
script:
- python setup.py test
- pip install pytest
- pytest tests/.
lint-test-job: # This job also runs in the test stage.
stage: test # It can run at the same time as unit-test-job (in parallel).
script:
- pip install flake8 pytest
- ls
- pip install flake8
- flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude='venv/'
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude='venv/'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment