gitlab-ci: put search_indexes in shared memory

This commit is contained in:
Skia 2021-09-30 10:48:08 +02:00
parent 2cbe6fa11c
commit aafc2e6e96
1 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,7 @@ stages:
test:
stage: test
script:
- env
- apt-get update
- apt-get install -y gettext python3-xapian libgraphviz-dev
- pushd /usr/lib/python3/dist-packages/xapian && ln -s _xapian* _xapian.so && popd
@ -11,6 +12,8 @@ test:
- python -c 'import xapian' # Fail immediately if there is a problem with xapian
- pip install -r requirements.txt
- pip install coverage
- mkdir -p /dev/shm/search_indexes
- ln -s /dev/shm/search_indexes sith/search_indexes
- ./manage.py compilemessages
- coverage run ./manage.py test
- coverage html