diff --git a/setuptools/tests/config/downloads/__init__.py b/setuptools/tests/config/downloads/__init__.py index 9a6013f4f0..de43cffb89 100644 --- a/setuptools/tests/config/downloads/__init__.py +++ b/setuptools/tests/config/downloads/__init__.py @@ -9,6 +9,11 @@ DOWNLOAD_DIR = Path(__file__).parent +# ---------------------------------------------------------------------- +# Please update ./preload.py accordingly when modifying this file +# ---------------------------------------------------------------------- + + def output_file(url: str, download_dir: Path = DOWNLOAD_DIR): file_name = url.strip() for part in NAME_REMOVE: diff --git a/setuptools/tests/config/test_apply_pyprojecttoml.py b/setuptools/tests/config/test_apply_pyprojecttoml.py index 15f2fe211a..045d7f40b6 100644 --- a/setuptools/tests/config/test_apply_pyprojecttoml.py +++ b/setuptools/tests/config/test_apply_pyprojecttoml.py @@ -1,5 +1,7 @@ """Make sure that applying the configuration from pyproject.toml is equivalent to applying a similar configuration from setup.cfg + +To run these tests offline, please have a look on ``./downloads/preload.py`` """ import io import re