Commit 8b4c14a 1 parent 3b61784 commit 8b4c14a Copy full SHA for 8b4c14a
File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 53
53
run : pytest tests/unit --cov=rocketpy
54
54
55
55
- name : Run Documentation Tests
56
- run : pytest rocketpy --doctest-modules --cov=rocketpy --cov-append
56
+ run : |
57
+ pip install numpy --upgrade
58
+ pytest rocketpy --doctest-modules --cov=rocketpy --cov-append
57
59
58
60
- name : Run Integration Tests
59
61
run : pytest tests/integration --cov=rocketpy --cov-append
Original file line number Diff line number Diff line change 20
20
# Numpy 1.x compatibility,
21
21
# TODO: remove these lines when all dependencies support numpy>=2.0.0
22
22
if np .lib .NumpyVersion (np .__version__ ) >= "2.0.0b1" :
23
+ # pylint: disable=no-name-in-module
23
24
from numpy import trapezoid # pragma: no cover
24
25
else :
25
26
from numpy import trapz as trapezoid # pragma: no cover
You can’t perform that action at this time.
0 commit comments