-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-440: remove scipy as a test dependency #462
Conversation
def test_cumulative_trapezoid() -> None: | ||
import scipy.integrate as spi | ||
|
||
# 1D f and x |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
scipy just compares the result with the actual values - https://github.com/scipy/scipy/blob/1d57f315d9454446d333d37d19f2a44f4baf35c9/scipy/integrate/tests/test_quadrature.py#L183
|
||
a = rng.standard_normal((100, 20)) | ||
b = rng.standard_normal((100,)) | ||
a = np.arange(25.0).reshape(-1, 5) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
941c28b
to
b883f48
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another one bites the dust 🩸
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Glad to see this go :)
Remove scipy as a test dependency and replace the tests with scipy's internal tests.
Closes: #440