diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-19 15:05:08 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-19 15:05:08 -0500 |
| commit | 7cd8b4966a6e7186ff45fe1f1c09a58f8a678113 (patch) | |
| tree | b06d12f57ce83bf808a5ba6c55140c8a4f27616f | |
| parent | b1c620657aef4bf92aafe77349add0cfd907243e (diff) | |
| download | python-setuptools-git-7cd8b4966a6e7186ff45fe1f1c09a58f8a678113.tar.gz | |
👹 Feed the hobgoblins (delint).
| -rw-r--r-- | setuptools/tests/test_dist.py | 3 |
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(): |
