Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasaunai committed May 1, 2024
1 parent b34d1f5 commit fd9a536
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit fd9a536

Please sign in to comment.