deploy: src/wolnelektury/localsettings.py
- git submodule update --init
pip install -r requirements/requirements.txt
src/manage.py migrate --noinput
src/manage.py update_counters
.ONESHELL:
test:
cd src
- coverage run --branch --source='.' ./manage.py test; true
- rm -rf ../htmlcov
+ python -Wall -m coverage run --branch --source='.' ./manage.py test; true
coverage html -d ../htmlcov.new
rm -rf ../htmlcov
mv ../htmlcov.new ../htmlcov