diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c279e829c30d3ef7555b6cdcf98b95d895b70f50..0cec496ab7d0aaf5b782d4241f02d2c264d3c6c2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -61,11 +61,12 @@ unit-test-job: # This job runs in the test stage. script: - echo "Running unit tests..." - pip install pytest - - pytest --junitxml=report.xml + # - pytest --junitxml=report.xml + - python -m pytest tests artifacts: when: always - reports: - junit: report.xml + #reports: + # junit: report.xml 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).