🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 07:08:51 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
setuptools
/
tests
/
integration
📍 /opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/tests/integration
🔄 Refresh
✏️
Editing: test_pbr.py
Read Only
import subprocess import pytest @pytest.mark.uses_network def test_pbr_integration(pbr_package, venv): """Ensure pbr packages install.""" cmd = [ 'python', '-m', 'pip', '-v', 'install', '--no-build-isolation', pbr_package, ] venv.run(cmd, stderr=subprocess.STDOUT) out = venv.run(["python", "-c", "import mypkg.hello"]) assert "Hello world!" in out
💾 Save Changes
❌ Cancel