1
0
mirror of https://github.com/enpaul/keyosk.git synced 2024-09-28 19:54:01 +00:00

Add placeholder test

This commit is contained in:
Ethan Paul 2020-02-18 23:02:43 -05:00
parent 7da27c3f57
commit 48b356eda2
2 changed files with 6 additions and 4 deletions

2
tests/test_nothing.py Normal file
View File

@ -0,0 +1,2 @@
def test_nothing():
pass

View File

@ -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