Skip to content

Commit

Permalink
Merge pull request #8759 from McSinyx/fix-test-py2-warn
Browse files Browse the repository at this point in the history
Allow py2 deprecation warning from setuptools
  • Loading branch information
pfmoore committed Aug 14, 2020
2 parents 4312b94 + 46b9383 commit 5ef3dd1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
Empty file.
2 changes: 2 additions & 0 deletions tests/functional/test_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from hashlib import sha256

import pytest
from pip._vendor.six import PY2

from pip._internal.cli.status_codes import ERROR
from pip._internal.utils.urls import path_to_url
Expand Down Expand Up @@ -474,6 +475,7 @@ def make_wheel_with_python_requires(script, package_name, python_requires):
package_dir.joinpath('setup.py').write_text(text)
script.run(
'python', 'setup.py', 'bdist_wheel', '--universal', cwd=package_dir,
allow_stderr_warning=PY2,
)

file_name = '{}-1.0-py2.py3-none-any.whl'.format(package_name)
Expand Down
5 changes: 4 additions & 1 deletion tests/functional/test_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from os.path import curdir, join, pardir

import pytest
from pip._vendor.six import PY2

from pip._internal.cli.status_codes import ERROR, SUCCESS
from pip._internal.models.index import PyPI, TestPyPI
Expand Down Expand Up @@ -1565,7 +1566,9 @@ def test_install_incompatible_python_requires_wheel(script, with_wheel):
version='0.1')
"""))
script.run(
'python', 'setup.py', 'bdist_wheel', '--universal', cwd=pkga_path)
'python', 'setup.py', 'bdist_wheel', '--universal',
cwd=pkga_path, allow_stderr_warning=PY2,
)
result = script.pip('install', './pkga/dist/pkga-0.1-py2.py3-none-any.whl',
expect_error=True)
assert _get_expected_error_text() in result.stderr, str(result)
Expand Down

0 comments on commit 5ef3dd1

Please sign in to comment.