From fd9a5369525d118d083a436b91cccb7e29a6c02e Mon Sep 17 00:00:00 2001 From: Nicolas Aunai Date: Wed, 1 May 2024 13:24:56 +0200 Subject: [PATCH] fix --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index d3d522e..654c5b3 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,7 @@ clean-test: ## remove test and coverage artifacts rm -fr .pytest_cache lint: ## check style with flake8 - flake8 space tests + flake8 spok tests test: ## run tests quickly with the default Python python setup.py test @@ -57,15 +57,15 @@ test-all: ## run tests on every Python version with tox tox coverage: ## check code coverage quickly with the default Python - coverage run --source space setup.py test + coverage run --source spok setup.py test coverage report -m coverage html $(BROWSER) htmlcov/index.html docs: ## generate Sphinx HTML documentation, including API docs - rm -f docs/space.rst + rm -f docs/spok.rst rm -f docs/modules.rst - sphinx-apidoc -o docs/ space + sphinx-apidoc -o docs/ spok $(MAKE) -C docs clean $(MAKE) -C docs html $(BROWSER) docs/_build/html/index.html