chore: add placeholder tests
This commit is contained in:
parent
d7fc6718a9
commit
197560078e
3 changed files with 7 additions and 5 deletions
|
|
@ -0,0 +1,2 @@
|
||||||
|
def test_default() -> None:
|
||||||
|
assert 1 == 1
|
||||||
2
tests/unit/byteb4rb1e_sphinxcontrib/test_default.py
Normal file
2
tests/unit/byteb4rb1e_sphinxcontrib/test_default.py
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
def test_default() -> None:
|
||||||
|
assert 1 == 1
|
||||||
8
tox.ini
8
tox.ini
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue