diff --git a/tests/test_nothing.py b/tests/test_nothing.py new file mode 100644 index 0000000..a3e981b --- /dev/null +++ b/tests/test_nothing.py @@ -0,0 +1,2 @@ +def test_nothing(): + pass diff --git a/tox.ini b/tox.ini index 8c52eda..c0a011a 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,7 @@ description = Run the unit tests (pytest) deps = pytest pytest-cov -commands = +commands = pytest --cov={envsitepackagesdir}/keyosk --cov-config {env:HOME}/.coveragerc tests/ --cov-report term-missing [testenv:lint] @@ -22,14 +22,14 @@ commands = [testenv:typing] description = Check type annotations with mypy -deps = +deps = mypy -commands = +commands = mypy keyosk --ignore-missing-imports --no-strict-optional [testenv:security] description = Check security vulnerabilities (bandit) -deps = +deps = bandit commands = bandit --recursive keyosk