-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathtest_all.py
68 lines (61 loc) · 1.83 KB
/
test_all.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
def test_import():
import juliacall
def test_issue_394():
"https://github.com/JuliaPy/PythonCall.jl/issues/394"
from juliacall import Main as jl
x = 3
f = lambda x: x+1
y = 5
jl.x = x
assert jl.x is x
jl.f = f
assert jl.f is f
jl.y = y
assert jl.y is y
assert jl.x is x
assert jl.f is f
assert jl.y is y
assert jl.seval("f(x)") == 4
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",
"typing_extensions",
"pytest",
"nbval",
],
check=True,
)
# Run PySR main test suite
subprocess.run(
[virtualenv_executable, "-m", "pysr", "test", "main"], check=True
)