summaryrefslogtreecommitdiff
path: root/setuptools/tests
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-02-20 12:32:25 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-02-20 12:32:25 -0500
commit346d98c700e2048bc7667970f23694d17d2c5642 (patch)
treef04663602e4757c6976dad28847356a1e0ae9ecb /setuptools/tests
parent5c57b5cc1e1d247fec64858d8cc4e93b5ffb11a3 (diff)
downloadpython-setuptools-git-346d98c700e2048bc7667970f23694d17d2c5642.tar.gz
👹 Feed the hobgoblins (delint).
Diffstat (limited to 'setuptools/tests')
-rw-r--r--setuptools/tests/test_egg_info.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/setuptools/tests/test_egg_info.py b/setuptools/tests/test_egg_info.py
index 5dfad7e2..bf95b03c 100644
--- a/setuptools/tests/test_egg_info.py
+++ b/setuptools/tests/test_egg_info.py
@@ -159,8 +159,10 @@ class TestEggInfo:
setup()
""")
- path.build({'setup.py': setup_script,
- 'setup.cfg': setup_config})
+ path.build({
+ 'setup.py': setup_script,
+ 'setup.cfg': setup_config,
+ })
# This command should fail with a ValueError, but because it's
# currently configured to use a subprocess, the actual traceback
@@ -216,8 +218,10 @@ class TestEggInfo:
'''
) % ('' if use_setup_cfg else requires)
setup_config = requires if use_setup_cfg else ''
- path.build({'setup.py': setup_script,
- 'setup.cfg': setup_config})
+ path.build({
+ 'setup.py': setup_script,
+ 'setup.cfg': setup_config,
+ })
mismatch_marker = "python_version<'{this_ver}'".format(
this_ver=sys.version_info[0],