diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2017-10-11 15:04:25 +0200 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-10-11 15:04:25 +0200 |
| commit | 5e6d72b852229750d00023885a6ce6149060d08a (patch) | |
| tree | c2c2828f22cdd8ec06204e7f65c63374990a460a /setuptools/tests/test_sdist.py | |
| parent | 1c00a900c9aba25d6369cf9312997434ad68b9b1 (diff) | |
| download | python-setuptools-git-5e6d72b852229750d00023885a6ce6149060d08a.tar.gz | |
Feed the hobgoblins (delint).
Diffstat (limited to 'setuptools/tests/test_sdist.py')
| -rw-r--r-- | setuptools/tests/test_sdist.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/setuptools/tests/test_sdist.py b/setuptools/tests/test_sdist.py index 5cb63c4b..e7fc71e3 100644 --- a/setuptools/tests/test_sdist.py +++ b/setuptools/tests/test_sdist.py @@ -128,8 +128,8 @@ class TestSdistTest: def test_defaults_case_sensitivity(self): """ - Make sure default files (README.*, etc.) are added in a case-sensitive - way to avoid problems with packages built on Windows. + Make sure default files (README.*, etc.) are added in a case-sensitive + way to avoid problems with packages built on Windows. """ open(os.path.join(self.temp_dir, 'readme.rst'), 'w').close() @@ -146,7 +146,9 @@ class TestSdistTest: with quiet(): cmd.run() - # lowercase all names so we can test in a case-insensitive way to make sure the files are not included + # lowercase all names so we can test in a + # case-insensitive way to make sure the files + # are not included. manifest = map(lambda x: x.lower(), cmd.filelist.files) assert 'readme.rst' not in manifest, manifest assert 'setup.py' not in manifest, manifest |
