diff --git a/pyproject.toml b/pyproject.toml index 95469c70..d8664dd4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -111,7 +111,7 @@ markers = [ "username_list: mark a test as using a list of usernames in config", ] testpaths = [ - "tap_github/tests", + "tests", ] [tool.ruff.lint] @@ -138,7 +138,7 @@ select = [ ] [tool.ruff.lint.per-file-ignores] -"tap_github/tests/*" = ["ANN"] +"tests/*" = ["ANN"] [tool.tox] requires = [ diff --git a/tap_github/tests/__init__.py b/tests/tests/__init__.py similarity index 100% rename from tap_github/tests/__init__.py rename to tests/tests/__init__.py diff --git a/tap_github/tests/conftest.py b/tests/tests/conftest.py similarity index 100% rename from tap_github/tests/conftest.py rename to tests/tests/conftest.py diff --git a/tap_github/tests/fixtures.py b/tests/tests/fixtures.py similarity index 100% rename from tap_github/tests/fixtures.py rename to tests/tests/fixtures.py diff --git a/tap_github/tests/test_authenticator.py b/tests/tests/test_authenticator.py similarity index 100% rename from tap_github/tests/test_authenticator.py rename to tests/tests/test_authenticator.py diff --git a/tap_github/tests/test_core.py b/tests/tests/test_core.py similarity index 100% rename from tap_github/tests/test_core.py rename to tests/tests/test_core.py diff --git a/tap_github/tests/test_discover.py b/tests/tests/test_discover.py similarity index 100% rename from tap_github/tests/test_discover.py rename to tests/tests/test_discover.py diff --git a/tap_github/tests/test_tap.py b/tests/tests/test_tap.py similarity index 100% rename from tap_github/tests/test_tap.py rename to tests/tests/test_tap.py