We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88bd892 commit d622935Copy full SHA for d622935
setuptools/command/easy_install.py
@@ -1,5 +1,14 @@
1
+import os
2
+import sys
3
+
4
from setuptools import Command
5
6
+from .. import _scripts
7
8
9
class easy_install(Command):
10
"""Stubbed command for temporary pbr compatibility."""
11
12
13
+ScriptWriter = _scripts.ScriptWriter
14
+sys_executable = os.environ.get("__PYVENV_LAUNCHER__", os.path.normpath(sys.executable))
setuptools/tests/integration/test_pbr.py
@@ -1,9 +1,6 @@
import subprocess
-import pytest
-
-@pytest.mark.xfail(reason="#4976")
def test_pbr_integration(pbr_package, venv):
"""Ensure pbr packages install."""
cmd = [
0 commit comments