diff --git a/pytest-extension/noxfile.py b/pytest-extension/noxfile.py index e013843..54f599d 100644 --- a/pytest-extension/noxfile.py +++ b/pytest-extension/noxfile.py @@ -17,6 +17,6 @@ def my_integration_tests(session: Session) -> None: path = PROJECT_CONFIG.root / "test" / "integration" base_command = ["poetry", "run"] - pytest_command = ["pytest", "-v", "-s", f"{path}"] + pytest_command = ["pytest", "-v", f"{path}"] command = base_command + pytest_command session.run(*command) diff --git a/pytest-extension/test/integration/pytest_extension_test.py b/pytest-extension/test/integration/pytest_extension_test.py index 9b3ebfe..de4d3a5 100644 --- a/pytest-extension/test/integration/pytest_extension_test.py +++ b/pytest-extension/test/integration/pytest_extension_test.py @@ -108,4 +108,4 @@ def test_bucketfs_cli_args(backend, bucketfs_cli_args): pytester.makepyfile(test_code) result = pytester.runpytest('-s', BACKEND_OPTION, BACKEND_ONPREM) assert result.ret == pytest.ExitCode.OK - result.assert_outcomes(passed=12, skipped=0) + result.assert_outcomes(passed=6, skipped=6)