Skip to content

Commit 96bfd1d

Browse files
committed
Revert "test: ensure we can see the integration test output"
This reverts commit 3391801.
1 parent 3391801 commit 96bfd1d

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

pytest/integration/test_pysr.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ def test_integration_pysr():
77
import tempfile
88

99
with tempfile.TemporaryDirectory() as tempdir:
10-
run_kws = dict(check=True, capture_output=True)
11-
subprocess.run([sys.executable, "-m", "virtualenv", tempdir], **run_kws)
10+
subprocess.run([sys.executable, "-m", "virtualenv", tempdir], check=True)
1211

1312
virtualenv_path = os.path.join(
1413
tempdir, "Scripts" if platform.system() == "Windows" else "bin"
@@ -18,11 +17,11 @@ def test_integration_pysr():
1817
assert os.path.exists(virtualenv_executable)
1918

2019
# Install this package
21-
subprocess.run([virtualenv_executable, "-m", "pip", "install", "."], **run_kws)
20+
subprocess.run([virtualenv_executable, "-m", "pip", "install", "."], check=True)
2221
# Install PySR with no requirement on JuliaCall
2322
subprocess.run(
2423
[virtualenv_executable, "-m", "pip", "install", "--no-deps", "pysr"],
25-
**run_kws,
24+
check=True,
2625
)
2726
# Install PySR test requirements
2827
subprocess.run(
@@ -38,9 +37,9 @@ def test_integration_pysr():
3837
"setuptools",
3938
"pytest",
4039
],
41-
**run_kws,
40+
check=True,
4241
)
4342
# Run PySR main test suite
4443
subprocess.run(
45-
[virtualenv_executable, "-m", "pysr", "test", "main"], **run_kws,
44+
[virtualenv_executable, "-m", "pysr", "test", "main"], check=True
4645
)

0 commit comments

Comments
 (0)