mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-15 18:53:25 +00:00
Merge branch 'poetry' into 'master'
Add missing dependencies and improve pipeline * Use black version specified in requirements for checking with black * Check if pyproject.toml file is valid at CI level * Build documentation in CI * Add missing postgres dependencie See merge request ae/Sith!284
This commit is contained in:
commit
489a9378c5
@ -1,20 +1,30 @@
|
||||
stages:
|
||||
- test
|
||||
|
||||
test:
|
||||
# Installs and launch unittests
|
||||
unittests:
|
||||
stage: test
|
||||
script:
|
||||
- env
|
||||
# Install dependencies
|
||||
- apt-get update
|
||||
- apt-get install -y gettext libxapian-dev libgraphviz-dev
|
||||
- pip install poetry
|
||||
- poetry install -E testing
|
||||
# Check pyproject.toml validity
|
||||
- poetry check
|
||||
# Install project
|
||||
- poetry install -E testing -E docs
|
||||
# Setup xapian index
|
||||
- mkdir -p /dev/shm/search_indexes
|
||||
- ln -s /dev/shm/search_indexes sith/search_indexes
|
||||
# Setup project
|
||||
- poetry run ./manage.py compilemessages
|
||||
# Run tests and export report
|
||||
- poetry run coverage run ./manage.py test
|
||||
- poetry run coverage html
|
||||
- poetry run coverage report
|
||||
# Build documentation
|
||||
- cd doc
|
||||
- poetry run make html
|
||||
variables:
|
||||
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip_tests"
|
||||
cache:
|
||||
@ -23,11 +33,14 @@ test:
|
||||
artifacts:
|
||||
paths:
|
||||
- coverage_report/
|
||||
- docs/_build
|
||||
|
||||
# Check black
|
||||
black:
|
||||
stage: test
|
||||
script:
|
||||
- pip install -U black
|
||||
- version=$(cat pyproject.toml | grep --color=never black | grep --color=never -oE '[0-9]([0-9.a-z]+)')
|
||||
- pip install black==$version
|
||||
- black --check .
|
||||
variables:
|
||||
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip_black"
|
||||
|
@ -38,8 +38,10 @@ libsass = "^0.21.0"
|
||||
django-ordered-model = "^3.4.3"
|
||||
django-simple-captcha = "^0.5.14"
|
||||
python-dateutil = "^2.8.2"
|
||||
psycopg2-binary = "^2.9.1"
|
||||
sentry-sdk = "^1.4.3"
|
||||
graphviz = "^0.17"
|
||||
Jinja2 = "<=3.0.3"
|
||||
|
||||
# Extra optional dependencies
|
||||
mysqlclient = { version = "^2.0.3", optional = true }
|
||||
|
Loading…
Reference in New Issue
Block a user