Skip to content

Commit e590e62

Browse files
committed
Restore test for pbr. Pin to newer version.
1 parent f523831 commit e590e62

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

setuptools/tests/fixtures.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,13 @@ def pbr_package(tmp_path, monkeypatch, venv):
384384
},
385385
"other": {"test.txt": "Another file in here."},
386386
}
387-
venv.run(["python", "-m", "pip", "install", "pbr"])
387+
venv.run([
388+
"python",
389+
"-m",
390+
"pip",
391+
"install",
392+
"pbr@git+https://opendev.org/openstack/pbr@e7f140f9de722db8c7e788974f7feef9609bcaee",
393+
])
388394
prefix = tmp_path / 'mypkg'
389395
prefix.mkdir()
390396
jaraco.path.build(files, prefix=prefix)

setuptools/tests/integration/test_pbr.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55

66
@pytest.mark.uses_network
7-
@pytest.mark.xfail(reason="https://bugs.launchpad.net/pbr/+bug/2111459")
87
def test_pbr_integration(pbr_package, venv):
98
"""Ensure pbr packages install."""
109
cmd = [

0 commit comments

Comments
 (0)