diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-18 11:11:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-18 11:11:59 -0400 |
commit | 7d984bbdc111fcdfef816265e159a3054dbee132 (patch) | |
tree | 3a25ce5765a8c9ae633a3eaeec1ce88f7b382e21 /setuptools/tests/test_sdist.py | |
parent | f774a0be095c3873c2881d393605fefa5ca0d0d6 (diff) | |
parent | 31bd37c6ac8de9e8c1bacebc2d8e1215df91eb96 (diff) | |
download | external_python_setuptools-7d984bbdc111fcdfef816265e159a3054dbee132.tar.gz external_python_setuptools-7d984bbdc111fcdfef816265e159a3054dbee132.tar.bz2 external_python_setuptools-7d984bbdc111fcdfef816265e159a3054dbee132.zip |
Merge pull request #820 from stepshal/blank
Fix quantity of blank lines.
Diffstat (limited to 'setuptools/tests/test_sdist.py')
-rw-r--r-- | setuptools/tests/test_sdist.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/setuptools/tests/test_sdist.py b/setuptools/tests/test_sdist.py index 16d0eb07..609c7830 100644 --- a/setuptools/tests/test_sdist.py +++ b/setuptools/tests/test_sdist.py @@ -20,10 +20,8 @@ from setuptools.command.egg_info import manifest_maker from setuptools.dist import Distribution from setuptools.tests import fail_on_ascii - py3_only = pytest.mark.xfail(six.PY2, reason="Test runs on Python 3 only") - SETUP_ATTRS = { 'name': 'sdist_test', 'version': '0.0', @@ -31,14 +29,12 @@ SETUP_ATTRS = { 'package_data': {'sdist_test': ['*.txt']} } - SETUP_PY = """\ from setuptools import setup setup(**%r) """ % SETUP_ATTRS - if six.PY3: LATIN1_FILENAME = 'smörbröd.py'.encode('latin-1') else: @@ -90,7 +86,6 @@ def read_all_bytes(filename): class TestSdistTest: - def setup_method(self, method): self.temp_dir = tempfile.mkdtemp() f = open(os.path.join(self.temp_dir, 'setup.py'), 'w') |