Skip to content

Commit b84b027

Browse files
committed
re-loosened bound for savgoldiff that doesn't agree between cloud and local, and added --ignore to first pytest call in test.yml
1 parent f17919c commit b84b027

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: tests and coverage
1818
run: |
1919
pip install -e .[advanced,dev] coveralls
20-
coverage run --source=pynumdiff --omit="pynumdiff/_version.py,pynumdiff/tests/*,pynumdiff/utils/old_pi_cruise_control.py" -m pytest -s
20+
coverage run --source=pynumdiff --omit="pynumdiff/_version.py,pynumdiff/tests/*,pynumdiff/utils/old_pi_cruise_control.py" -m pytest -s --ignore=tests/test_imports.py
2121
pip uninstall -y cvxpy
2222
coverage run -a --source=pynumdiff -m pytest tests/test_imports.py
2323
coverage xml

pynumdiff/tests/test_diff_methods.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def spline_irreg_step(*args, **kwargs): return splinediff(*args, **kwargs)
134134
[(0, 0), (1, 1), (0, -1), (1, 1)],
135135
[(0, 0), (3, 3), (0, 0), (3, 3)]],
136136
savgoldiff: [[(-7, -7), (-13, -14), (0, -1), (0, 0)],
137-
[(-7, -8), (-13, -13), (0, -1), (0, 0)],
137+
[(-7, -7), (-13, -13), (0, -1), (0, 0)],
138138
[(-2, -2), (-1, -1), (0, -1), (0, 0)],
139139
[(0, -1), (0, 0), (0, 0), (1, 0)],
140140
[(1, 1), (2, 2), (1, 1), (2, 2)],

0 commit comments

Comments
 (0)