We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f259bfd commit db12084Copy full SHA for db12084
1 file changed
test/test_0_basic.py
@@ -33,7 +33,9 @@ def test(tmp_path, build_frontend_env, capfd):
33
34
# Verify pip warning not shown
35
captured = capfd.readouterr()
36
- assert "WARNING: Running pip as the 'root' user can result" not in captured.err
+ for stream in (captured.err, captured.out):
37
+ assert "WARNING: Running pip as the 'root' user can result" not in stream
38
+ assert "A new release of pip available" not in stream
39
40
41
@pytest.mark.skip(reason="to keep test output clean")
0 commit comments