1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
require:
- make
- python3-pip
/lint:
tag: [ stable, lint ]
summary: Run linting on the whole codebase
test: cd .. && make lint
/coverage_integration:
tag: [ stable, coverage ]
summary: Run integration tests coverage check
test: cd .. && make integration
/coverage_unittest:
tag: [ stable, coverage ]
summary: Run unit tests coverage check
test: cd .. && make unittest
/tests:
/base_python:
tag: [ base ]
summary: Run all tests on the base python version
test: cd .. && make tests-ci-base-python
duration: 10m
/all_python:
tag: [ matrix]
summary: Run all tests for all ptyhon versions available
test: cd .. && make tests-ci-all-python
duration: 10m
|