Add some live tests.

This commit is contained in:
Chris Berkhout 2021-08-11 15:00:58 +02:00
parent d19bc66c61
commit 74d9c211c9
4 changed files with 146 additions and 9 deletions

View file

@ -12,12 +12,12 @@ lint: ## Lint source code
poetry run flake8
.PHONY: test
test: ## Run non-live tests
poetry run pytest -m "not live" --color=yes
test: ## Run tests
poetry run pytest --color=yes
.PHONY: test-live
test-live: ## Run live tests
poetry run pytest -m live --color=yes
tests/live.sh
.PHONY: coverage
coverage: ## Generate and open coverage report