2018-10-04 19:16:02 +00:00
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
|
2018-10-04 19:35:39 +00:00
|
|
|
test:
|
|
|
|
stage: test
|
2016-04-18 02:58:15 +00:00
|
|
|
script:
|
2021-09-30 08:48:08 +00:00
|
|
|
- env
|
2016-11-08 18:17:42 +00:00
|
|
|
- apt-get update
|
2021-10-15 16:12:56 +00:00
|
|
|
- apt-get install -y gettext libxapian-dev libgraphviz-dev
|
2022-02-28 09:34:15 +00:00
|
|
|
- pip install poetry
|
|
|
|
- poetry install -E testing
|
2021-09-30 08:48:08 +00:00
|
|
|
- mkdir -p /dev/shm/search_indexes
|
|
|
|
- ln -s /dev/shm/search_indexes sith/search_indexes
|
2022-02-28 09:34:15 +00:00
|
|
|
- poetry run ./manage.py compilemessages
|
|
|
|
- poetry run coverage run ./manage.py test
|
|
|
|
- poetry run coverage html
|
|
|
|
- poetry run coverage report
|
2021-09-30 09:07:00 +00:00
|
|
|
variables:
|
|
|
|
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip_tests"
|
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- .cache/pip_tests
|
2017-08-29 13:13:09 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- coverage_report/
|
2018-10-04 19:16:02 +00:00
|
|
|
|
|
|
|
black:
|
|
|
|
stage: test
|
|
|
|
script:
|
2021-09-30 09:07:00 +00:00
|
|
|
- pip install -U black
|
2018-10-04 19:16:02 +00:00
|
|
|
- black --check .
|
2021-09-30 09:07:00 +00:00
|
|
|
variables:
|
|
|
|
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip_black"
|
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- .cache/pip_black
|