-
Notifications
You must be signed in to change notification settings - Fork 32
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
ensure extension modules are present in built wheel #256
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #256 +/- ##
==========================================
- Coverage 85.18% 84.99% -0.19%
==========================================
Files 35 35
Lines 6797 6865 +68
==========================================
+ Hits 5790 5835 +45
- Misses 1007 1030 +23 ☔ View full report in Codecov by Sentry. |
@@ -23,5 +23,6 @@ jobs: | |||
# Until we have arm64 runners, we can't automatically test arm64 wheels | |||
- cp3*-macosx_arm64 | |||
sdist: true | |||
test_command: python -c "from stcal.ramp_fitting.ols_cas22 import _ramp, _jump, _fit" |
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.
after merging #156, add its module to the test command:
test_command: python -c "from stcal.ramp_fitting.ols_cas22 import _ramp, _jump, _fit" | |
test_command: python -c "from stcal.ramp_fitting.ols_cas22 import _ramp, _jump, _fit; from stcal.ramp_fitting import slope_fitter" |
Resolves SCSB-149
Checklist
added entry inCHANGES.rst
(either inBug Fixes
orChanges to API
)