chore: add placeholder tests

This commit is contained in:
Tiara Rodney 2025-05-25 15:17:54 +02:00
parent d7fc6718a9
commit 197560078e
No known key found for this signature in database
GPG key ID: 5F43FAB4FBE5B5EB
3 changed files with 7 additions and 5 deletions

View file

@ -0,0 +1,2 @@
def test_default() -> None:
assert 1 == 1

View file

@ -0,0 +1,2 @@
def test_default() -> None:
assert 1 == 1

View file

@ -17,8 +17,7 @@ labels = static
deps = deps =
mypy mypy
commands = commands =
mypy src python3 -m mypy src tests --junit-xml test-reports/{env_name}.xml
mypy tests
[testenv:audit] [testenv:audit]
description = run type check on code base description = run type check on code base
@ -32,10 +31,9 @@ commands =
description = run type check on code base description = run type check on code base
labels = static labels = static
deps = deps =
autopep8 black
commands = commands =
autopep8 --recursive --diff --exit-code src/ black --check src tests
autopep8 --recursive --diff --exit-code tests/
[testenv:py3{9-13}-unit] [testenv:py3{9-13}-unit]
description = run type check on code base description = run type check on code base