diff --git a/tests/black_project/pyproject.toml b/tests/black_project/pyproject.toml index beec19a046b7baad20feebc9629b45159b6782ea..0a7bca84074b015dffca7f799bd6aaa28520d03b 100644 --- a/tests/black_project/pyproject.toml +++ b/tests/black_project/pyproject.toml @@ -1,11 +1,11 @@ [build-system] -requires = ["hatchling"] build-backend = "hatchling.build" +requires = ["hatchling"] [project] name = "black_project" version = "0.1.0" authors = [ - { name = "Author Name", email = "author.name@example.com" }, + {email = "author.name@example.com", name = "Author Name"}, ] description = "A description of what the package is for." diff --git a/tests/flake8_project/pyproject.toml b/tests/flake8_project/pyproject.toml index eb3a8418db02a20c20f9be1933c768c7576c65b0..9d04adf6f237fca6d5c03f1958631794c3746e0d 100644 --- a/tests/flake8_project/pyproject.toml +++ b/tests/flake8_project/pyproject.toml @@ -1,11 +1,11 @@ [build-system] -requires = ["hatchling"] build-backend = "hatchling.build" +requires = ["hatchling"] [project] name = "flake8_project" version = "0.1.0" authors = [ - { name = "Author Name", email = "author.name@example.com" }, + {email = "author.name@example.com", name = "Author Name"}, ] description = "A description of what the package is for." diff --git a/tests/isort_project/pyproject.toml b/tests/isort_project/pyproject.toml index 241a663f7e2bd821f68b25d169bfbaa58bf0148e..655c80ce12fd6f43a993d7350dbf342011b83151 100644 --- a/tests/isort_project/pyproject.toml +++ b/tests/isort_project/pyproject.toml @@ -1,11 +1,11 @@ [build-system] -requires = ["hatchling"] build-backend = "hatchling.build" +requires = ["hatchling"] [project] name = "isort_project" version = "0.1.0" authors = [ - { name = "Author Name", email = "author.name@example.com" }, + {email = "author.name@example.com", name = "Author Name"}, ] description = "A description of what the package is for." diff --git a/tests/mypy_project/pyproject.toml b/tests/mypy_project/pyproject.toml index 51d87c0d9e9611232a20156a08beb71ec93aff77..e7b30028f9a1705a6265c55039d1527bd4f901e8 100644 --- a/tests/mypy_project/pyproject.toml +++ b/tests/mypy_project/pyproject.toml @@ -1,19 +1,18 @@ [build-system] -requires = ["hatchling"] build-backend = "hatchling.build" +requires = ["hatchling"] [project] name = "mypy_project" version = "0.1.0" authors = [ - { name = "Author Name", email = "author.name@example.com" }, + {email = "author.name@example.com", name = "Author Name"}, ] description = "A description of what the package is for." dependencies = [ "mypy", ] - [tool.mypy] packages = "mypy_project" python_version = "3.11" diff --git a/tests/pytest_project/pyproject.toml b/tests/pytest_project/pyproject.toml index c27397ba3014facea26bcc601435f46bb58ca594..1d8135741bd02edad61632d2503eb42426d998ba 100644 --- a/tests/pytest_project/pyproject.toml +++ b/tests/pytest_project/pyproject.toml @@ -1,24 +1,24 @@ [build-system] -requires = ["hatchling"] build-backend = "hatchling.build" +requires = ["hatchling"] [project] name = "pytest_project" version = "0.1.0" authors = [ - { name = "Author Name", email = "author.name@example.com" }, + {email = "author.name@example.com", name = "Author Name"}, ] description = "A description of what the package is for." +[project.optional-dependencies] +TESTS = [ + "pytest", +] + [tool.pytest.ini_options] -minversion = "6.0" addopts = "-rA -q --strict-markers" +minversion = "6.0" testpaths = [ - "tests", "integration", -] - -[project.optional-dependencies] -TESTS = [ - "pytest", + "tests", ] diff --git a/tests/python_install_project/pyproject.toml b/tests/python_install_project/pyproject.toml index 5a1a5ebd45766c243ac6c005fb1ef1ef82873801..9ccca7a3ec1605b3b31715c18cf2981352ac1a51 100644 --- a/tests/python_install_project/pyproject.toml +++ b/tests/python_install_project/pyproject.toml @@ -1,11 +1,11 @@ [build-system] -requires = ["hatchling"] build-backend = "hatchling.build" +requires = ["hatchling"] [project] name = "python_install_project" version = "0.1.0" authors = [ - { name = "Author Name", email = "author.name@example.com" }, + {email = "author.name@example.com", name = "Author Name"}, ] description = "A description of what the package is for." diff --git a/tests/ruff_project/pyproject.toml b/tests/ruff_project/pyproject.toml index cea87f6e7d8f9c6ab4814f8e8a3f3f14bf9604d6..3d671d9690297bc34fc02a17a20c2ecd84947a3f 100644 --- a/tests/ruff_project/pyproject.toml +++ b/tests/ruff_project/pyproject.toml @@ -1,11 +1,11 @@ [build-system] -requires = ["hatchling"] build-backend = "hatchling.build" +requires = ["hatchling"] [project] name = "ruff_project" version = "0.1.0" authors = [ - { name = "Author Name", email = "author.name@example.com" }, + {email = "author.name@example.com", name = "Author Name"}, ] description = "A description of what the package is for."