aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-01-19 15:05:08 -0500
committerJason R. Coombs <jaraco@jaraco.com>2020-01-19 15:05:08 -0500
commit7cd8b4966a6e7186ff45fe1f1c09a58f8a678113 (patch)
treeb06d12f57ce83bf808a5ba6c55140c8a4f27616f /setuptools
parentb1c620657aef4bf92aafe77349add0cfd907243e (diff)
downloadexternal_python_setuptools-7cd8b4966a6e7186ff45fe1f1c09a58f8a678113.tar.gz
external_python_setuptools-7cd8b4966a6e7186ff45fe1f1c09a58f8a678113.tar.bz2
external_python_setuptools-7cd8b4966a6e7186ff45fe1f1c09a58f8a678113.zip
👹 Feed the hobgoblins (delint).
Diffstat (limited to 'setuptools')
-rw-r--r--setuptools/tests/test_dist.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/tests/test_dist.py b/setuptools/tests/test_dist.py
index b93ef148..6e8c45fd 100644
--- a/setuptools/tests/test_dist.py
+++ b/setuptools/tests/test_dist.py
@@ -61,7 +61,8 @@ def test_dist_fetch_build_egg(tmpdir):
dist.fetch_build_egg(r)
for r in reqs
]
- assert [dist.key for dist in resolved_dists if dist] == reqs
+ # noqa below because on Python 2 it causes flakes
+ assert [dist.key for dist in resolved_dists if dist] == reqs # noqa
def test_dist__get_unpatched_deprecated():