-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathtest_pysr.py
45 lines (41 loc) · 1.37 KB
/
test_pysr.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
def test_integration_pysr():
"Integration tests for PySR"
import os
import platform
import subprocess
import sys
import tempfile
with tempfile.TemporaryDirectory() as tempdir:
subprocess.run([sys.executable, "-m", "virtualenv", tempdir], check=True)
virtualenv_path = os.path.join(
tempdir, "Scripts" if platform.system() == "Windows" else "bin"
)
virtualenv_executable = os.path.join(virtualenv_path, "python")
assert os.path.exists(virtualenv_executable)
# Install this package
subprocess.run([virtualenv_executable, "-m", "pip", "install", "."], check=True)
# Install PySR with no requirement on JuliaCall
subprocess.run(
[virtualenv_executable, "-m", "pip", "install", "--no-deps", "pysr"],
check=True,
)
# Install PySR test requirements
subprocess.run(
[
virtualenv_executable,
"-m",
"pip",
"install",
"sympy",
"pandas",
"scikit_learn",
"click",
"setuptools",
"pytest",
],
check=True,
)
# Run PySR main test suite
subprocess.run(
[virtualenv_executable, "-m", "pysr", "test", "main"], check=True
)