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:
|
2016-11-08 18:17:42 +00:00
|
|
|
- apt-get update
|
2018-11-26 18:54:51 +00:00
|
|
|
- apt-get install -y gettext python3-xapian
|
|
|
|
- pushd /usr/lib/python3/dist-packages/xapian && ln -s _xapian* _xapian.so && popd
|
|
|
|
- export PYTHONPATH="/usr/lib/python3/dist-packages:$PYTHONPATH"
|
|
|
|
- python -c 'import xapian' # Fail immediately if there is a problem with xapian
|
2016-04-18 02:58:15 +00:00
|
|
|
- pip install -r requirements.txt
|
2018-10-04 19:29:19 +00:00
|
|
|
- pip install coverage
|
2017-08-29 13:13:09 +00:00
|
|
|
- ./manage.py compilemessages
|
|
|
|
- coverage run ./manage.py test
|
|
|
|
- coverage html
|
|
|
|
- coverage report
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- coverage_report/
|
2018-10-04 19:16:02 +00:00
|
|
|
|
|
|
|
black:
|
|
|
|
stage: test
|
|
|
|
script:
|
2018-10-04 19:35:39 +00:00
|
|
|
- pip install black
|
2018-10-04 19:16:02 +00:00
|
|
|
- black --check .
|