@@ -7,7 +7,8 @@ def test_integration_pysr():
7
7
import tempfile
8
8
9
9
with tempfile .TemporaryDirectory () as tempdir :
10
- subprocess .run ([sys .executable , "-m" , "virtualenv" , tempdir ], check = True )
10
+ run_kws = dict (check = True , capture_output = True )
11
+ subprocess .run ([sys .executable , "-m" , "virtualenv" , tempdir ], ** run_kws )
11
12
12
13
virtualenv_path = os .path .join (
13
14
tempdir , "Scripts" if platform .system () == "Windows" else "bin"
@@ -17,11 +18,11 @@ def test_integration_pysr():
17
18
assert os .path .exists (virtualenv_executable )
18
19
19
20
# Install this package
20
- subprocess .run ([virtualenv_executable , "-m" , "pip" , "install" , "." ], check = True )
21
+ subprocess .run ([virtualenv_executable , "-m" , "pip" , "install" , "." ], ** run_kws )
21
22
# Install PySR with no requirement on JuliaCall
22
23
subprocess .run (
23
24
[virtualenv_executable , "-m" , "pip" , "install" , "--no-deps" , "pysr" ],
24
- check = True ,
25
+ ** run_kws ,
25
26
)
26
27
# Install PySR test requirements
27
28
subprocess .run (
@@ -37,9 +38,9 @@ def test_integration_pysr():
37
38
"setuptools" ,
38
39
"pytest" ,
39
40
],
40
- check = True ,
41
+ ** run_kws ,
41
42
)
42
43
# Run PySR main test suite
43
44
subprocess .run (
44
- [virtualenv_executable , "-m" , "pysr" , "test" , "main" ], check = True
45
+ [virtualenv_executable , "-m" , "pysr" , "test" , "main" ], ** run_kws ,
45
46
)
0 commit comments