diff --git a/pyproject.toml b/pyproject.toml index 75b8c1de6..520c03d65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,6 @@ ignore_errors = true module = [ "tests.functional.*", "tests.functional.api.*", - "tests.meta.*", "tests.smoke.*", ] disable_error_code = ["no-untyped-def"] diff --git a/tests/meta/__init__.py b/tests/unit/meta/__init__.py similarity index 100% rename from tests/meta/__init__.py rename to tests/unit/meta/__init__.py diff --git a/tests/meta/test_ensure_type_hints.py b/tests/unit/meta/test_ensure_type_hints.py similarity index 100% rename from tests/meta/test_ensure_type_hints.py rename to tests/unit/meta/test_ensure_type_hints.py diff --git a/tests/meta/test_mro.py b/tests/unit/meta/test_mro.py similarity index 100% rename from tests/meta/test_mro.py rename to tests/unit/meta/test_mro.py diff --git a/tests/meta/test_v4_objects_imported.py b/tests/unit/meta/test_v4_objects_imported.py similarity index 100% rename from tests/meta/test_v4_objects_imported.py rename to tests/unit/meta/test_v4_objects_imported.py diff --git a/tox.ini b/tox.ini index aa9ff6c76..3d964f23a 100644 --- a/tox.ini +++ b/tox.ini @@ -24,7 +24,7 @@ isolated_build = True deps = -r{toxinidir}/requirements.txt -r{toxinidir}/requirements-test.txt commands = - pytest tests/unit tests/meta {posargs} + pytest tests/unit {posargs} [testenv:black] basepython = python3 @@ -91,7 +91,7 @@ commands = sphinx-build -n -W --keep-going -b html docs build/sphinx/html [testenv:cover] commands = pytest --cov --cov-report term --cov-report html \ - --cov-report xml tests/unit tests/meta {posargs} + --cov-report xml tests/unit {posargs} [coverage:run] omit = *tests*