Skip to content

Commit 0e2ff6f

Browse files
authored
Merge pull request #244 from xylar/exclude-tests-from-package
Add `tests` to dirs excluded from package
2 parents e887845 + 1538642 commit 0e2ff6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ warn_unused_configs = true
5858

5959
[tool.ruff]
6060
# Exclude a variety of commonly ignored directories.
61-
exclude = ["docs*", "conda*"]
61+
exclude = ["docs", "conda"]
6262
line-length = 79
6363

6464
[tool.ruff.lint]
@@ -88,7 +88,7 @@ requires = ["setuptools>=60"]
8888
build-backend = "setuptools.build_meta"
8989

9090
[tool.setuptools.packages.find]
91-
exclude = ["docs*", "conda*"]
91+
exclude = ["docs", "conda", "tests"]
9292

9393
[tool.setuptools.dynamic]
9494
version = { attr = "mache.version.__version__" }

0 commit comments

Comments
 (0)