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

Update .gitlab-ci.yml file

parent 43abe04b
No related branches found
No related tags found
No related merge requests found
Pipeline #6946 failed
......@@ -26,13 +26,11 @@ build-job: # This job runs in the build stage, which runs first.
- pip install .
test-job: # This job runs in the test stage.
stage: test # It only starts when the job in the build stage completes successfully.
test: # This job runs in the build stage, which runs first.
stage: test
script:
- echo "Running unit tests... This will take about 60 seconds."
- sleep 60
- echo "Code coverage is 90%"
- python setup.py test
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:
......
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