From 48b356eda22f5989823752364ab279ba7a80cbf5 Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Tue, 18 Feb 2020 23:02:43 -0500 Subject: [PATCH] Add placeholder test --- tests/test_nothing.py | 2 ++ tox.ini | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 tests/test_nothing.py 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