Skip to content

Commit 104faba

Browse files
committed
Update
1 parent f38dd0b commit 104faba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3939
- name: Test with pytest
4040
run: |
41-
pytest -v -n auto --timeout 1200
41+
pytest -v -n auto --timeout 1800

tests/test_ode-strogatz.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def test_d_glider1():
233233

234234
assert(len(model.bestExpressions) == 1)
235235
assert(sr.expr_eq(sympy.expand(model.bestExpressions[0][0]), sympy.sympify("-0.05*x**2-sin(y)")))
236-
"""
236+
237237
def test_d_glider2():
238238
label, x, y = file_data("https://raw.githubusercontent.com/lacava/ode-strogatz/master/d_glider2.txt")
239239

@@ -264,7 +264,7 @@ def test_d_glider2():
264264

265265
assert(len(model.bestExpressions) == 1)
266266
assert(sr.expr_eq(sympy.expand(model.bestExpressions[0][0]), sympy.sympify("x - cos(y)/x")))
267-
"""
267+
268268
def test_d_lv1():
269269
label, x, y = file_data("https://raw.githubusercontent.com/lacava/ode-strogatz/master/d_lv1.txt")
270270

0 commit comments

Comments
 (0)