-
Notifications
You must be signed in to change notification settings - Fork 302
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
Add appveyor and use ci-helpers for CI environments #271
Conversation
nc.close() | ||
with Dataset('test.nc', 'w') as nc: | ||
# Create dimensions | ||
row_dim = nc.createDimension('rows', 10) |
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.
F841 local variable 'row_dim' is assigned to but never used
with Dataset('test.nc', 'w') as nc: | ||
# Create dimensions | ||
row_dim = nc.createDimension('rows', 10) | ||
col_dim = nc.createDimension('cols', 100) |
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.
F841 local variable 'col_dim' is assigned to but never used
Codecov Report
@@ Coverage Diff @@
## develop #271 +/- ##
===========================================
+ Coverage 63.8% 63.85% +0.05%
===========================================
Files 112 112
Lines 13861 13871 +10
===========================================
+ Hits 8844 8858 +14
+ Misses 5017 5013 -4
Continue to review full report at Codecov.
|
No longer needed with ci-helpers
Add appveyor CI configs for running Windows tests. Includes converting travis tests to use ci-helpers for easier CI environment management.