diff options
| author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-02-27 10:36:58 +0000 |
|---|---|---|
| committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-02-27 10:36:58 +0000 |
| commit | 89e7f64ffd4e57bc2a764c885382d99a28133a2d (patch) | |
| tree | debf0a6515c0bdd2c0fd0e890f335d6cc2859eeb | |
| parent | 9bfb5bfb861e631964718c95e1897adf4557bfd0 (diff) | |
| download | python-setuptools-git-89e7f64ffd4e57bc2a764c885382d99a28133a2d.tar.gz | |
Remove htmlcov from auto **module** discovery
It seems that it was previously added there by mistake.
After some inspection ``htmlcov`` should be a folder (by default) and
therefore can only be confused by a package (not a module)
| -rw-r--r-- | setuptools/discovery.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/setuptools/discovery.py b/setuptools/discovery.py index 75c6e835..f053dba8 100644 --- a/setuptools/discovery.py +++ b/setuptools/discovery.py @@ -274,7 +274,6 @@ class FlatLayoutModuleFinder(ModuleFinder): "benchmarks", "exercise", "exercises", - "htmlcov", # Coverage.py # ---- Hidden files/Private modules ---- "[._]*", ) |
