mirror of
https://github.com/tbabej/taskwiki.git
synced 2025-08-23 02:23:07 +02:00

Coverage reporting wasn't migrated into the docker container and therefore did nothing at all.
17 lines
292 B
Makefile
17 lines
292 B
Makefile
export LC_ALL := en_US.UTF-8
|
|
|
|
PYTHON ?= python3
|
|
|
|
test:
|
|
docker-compose run --rm tests
|
|
|
|
pytest:
|
|
$(PYTHON) -m pytest -vv $(PYTEST_FLAGS) tests/
|
|
|
|
cover-pytest: pytest
|
|
coverage combine
|
|
coverage report
|
|
if [ "$$TRAVIS" ]; then coveralls; fi
|
|
|
|
xvfb-%:
|
|
xvfb-run --server-args=-noreset $(MAKE) $*
|