From 197560078edf28deb0d262da34e4e71aed112438 Mon Sep 17 00:00:00 2001 From: Tiara Rodney Date: Sun, 25 May 2025 15:17:54 +0200 Subject: [PATCH] chore: add placeholder tests --- .../byteb4rb1e_sphinxcontrib/test_authorship.py | 2 ++ tests/unit/byteb4rb1e_sphinxcontrib/test_default.py | 2 ++ tox.ini | 8 +++----- 3 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 tests/unit/byteb4rb1e_sphinxcontrib/test_default.py diff --git a/tests/integration/byteb4rb1e_sphinxcontrib/test_authorship.py b/tests/integration/byteb4rb1e_sphinxcontrib/test_authorship.py index e69de29..3519ad0 100644 --- a/tests/integration/byteb4rb1e_sphinxcontrib/test_authorship.py +++ b/tests/integration/byteb4rb1e_sphinxcontrib/test_authorship.py @@ -0,0 +1,2 @@ +def test_default() -> None: + assert 1 == 1 diff --git a/tests/unit/byteb4rb1e_sphinxcontrib/test_default.py b/tests/unit/byteb4rb1e_sphinxcontrib/test_default.py new file mode 100644 index 0000000..3519ad0 --- /dev/null +++ b/tests/unit/byteb4rb1e_sphinxcontrib/test_default.py @@ -0,0 +1,2 @@ +def test_default() -> None: + assert 1 == 1 diff --git a/tox.ini b/tox.ini index 425059b..b81dd10 100644 --- a/tox.ini +++ b/tox.ini @@ -17,8 +17,7 @@ labels = static deps = mypy commands = - mypy src - mypy tests + python3 -m mypy src tests --junit-xml test-reports/{env_name}.xml [testenv:audit] description = run type check on code base @@ -32,10 +31,9 @@ commands = description = run type check on code base labels = static deps = - autopep8 + black commands = - autopep8 --recursive --diff --exit-code src/ - autopep8 --recursive --diff --exit-code tests/ + black --check src tests [testenv:py3{9-13}-unit] description = run type check on code base