From 26ce978a2ecbb5195df9c84808e3a70cd7b2711f Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Fri, 27 Sep 2024 12:14:01 +0100 Subject: [PATCH] Include tests/**/*.toml in sdist (#368) Otherwise `test_toml_config_custom_path` fails when run from the sdist. --- CHANGELOG.md | 1 + MANIFEST.in | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cec65db..03509bd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # 2.13 (unreleased) * Add PyPI and conda-forge badges to README file (Trevor James Smith, #356). +* Include `tests/**/*.toml` in sdist (Colin Watson). # 2.12 (2024-09-17) diff --git a/MANIFEST.in b/MANIFEST.in index df6df808..22e0ead7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,6 @@ include *.md include *.txt include tests/*.py +include tests/**/*.toml include tox.ini include vulture/whitelists/*.py