aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_build_meta.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-08-21 09:00:41 -0400
committerJason R. Coombs <jaraco@jaraco.com>2018-08-21 09:00:41 -0400
commit6498a7e3544e25183854b1b44d77c2e650d83dbb (patch)
tree86531144e5805e060456831351cabf5c485554a5 /setuptools/tests/test_build_meta.py
parentcb938be8439b69dc5f9b5c319466b2dce4cdf93f (diff)
downloadexternal_python_setuptools-6498a7e3544e25183854b1b44d77c2e650d83dbb.tar.gz
external_python_setuptools-6498a7e3544e25183854b1b44d77c2e650d83dbb.tar.bz2
external_python_setuptools-6498a7e3544e25183854b1b44d77c2e650d83dbb.zip
Reindent to avoid hanging indent.
Diffstat (limited to 'setuptools/tests/test_build_meta.py')
-rw-r--r--setuptools/tests/test_build_meta.py90
1 files changed, 46 insertions, 44 deletions
diff --git a/setuptools/tests/test_build_meta.py b/setuptools/tests/test_build_meta.py
index a7d1af66..a5aa75a3 100644
--- a/setuptools/tests/test_build_meta.py
+++ b/setuptools/tests/test_build_meta.py
@@ -46,50 +46,52 @@ class BuildBackendCaller(BuildBackendBase):
return getattr(mod, name)(*args, **kw)
-defns = [{
- 'setup.py': DALS("""
- __import__('setuptools').setup(
- name='foo',
- py_modules=['hello'],
- setup_requires=['six'],
- )
- """),
- 'hello.py': DALS("""
- def run():
- print('hello')
- """),
- },
- {
- 'setup.py': DALS("""
- assert __name__ == '__main__'
- __import__('setuptools').setup(
- name='foo',
- py_modules=['hello'],
- setup_requires=['six'],
- )
- """),
- 'hello.py': DALS("""
- def run():
- print('hello')
- """),
- },
- {
- 'setup.py': DALS("""
- variable = True
- def function():
- return variable
- assert variable
- __import__('setuptools').setup(
- name='foo',
- py_modules=['hello'],
- setup_requires=['six'],
- )
- """),
- 'hello.py': DALS("""
- def run():
- print('hello')
- """),
- }]
+defns = [
+ {
+ 'setup.py': DALS("""
+ __import__('setuptools').setup(
+ name='foo',
+ py_modules=['hello'],
+ setup_requires=['six'],
+ )
+ """),
+ 'hello.py': DALS("""
+ def run():
+ print('hello')
+ """),
+ },
+ {
+ 'setup.py': DALS("""
+ assert __name__ == '__main__'
+ __import__('setuptools').setup(
+ name='foo',
+ py_modules=['hello'],
+ setup_requires=['six'],
+ )
+ """),
+ 'hello.py': DALS("""
+ def run():
+ print('hello')
+ """),
+ },
+ {
+ 'setup.py': DALS("""
+ variable = True
+ def function():
+ return variable
+ assert variable
+ __import__('setuptools').setup(
+ name='foo',
+ py_modules=['hello'],
+ setup_requires=['six'],
+ )
+ """),
+ 'hello.py': DALS("""
+ def run():
+ print('hello')
+ """),
+ },
+]
@pytest.fixture(params=defns)