-
Notifications
You must be signed in to change notification settings - Fork 84
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
Use temp .netrc file for integration tests and support NETRC environment variable #808
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
8bf3866
Use temp .netrc file for integration tests
chuckwondo 8188ccd
Suppress pip warning about running as root user
chuckwondo 1360737
Check permission only for pull_request_target event
chuckwondo af3dd9f
Remove unnecessary dup env vars
chuckwondo 1d0f987
Move project urls to correct section of pyproject.toml
chuckwondo ddc3b15
Correct Luis's email address
chuckwondo 7e9bffe
Move and complete kerchunk dependencies
chuckwondo 3562a9d
Add missing type annotation
chuckwondo 23c4e9f
Include kerchunk extra within test extra
chuckwondo 66cc854
Add nox integration-tests session
chuckwondo 4626387
Mindeps requires python 3.9, h5py 3.0+
chuckwondo 4049bf0
Remove noise from CHANGELOG
chuckwondo e510c95
Update uv.lock
chuckwondo abf574b
Fix type hint for threads parameter
chuckwondo 8a30956
Remove top-level assertions
chuckwondo 2f5be76
Specify explicit engine
chuckwondo 80e1896
Remove obsolete on-prem DAAC entry for ORNLDAAC
chuckwondo 3059f39
Fix CHANGELOG to match Common Changelog convention
chuckwondo 1fe472c
Update changelog.
chuckwondo 17542d7
Restore Luis's email
chuckwondo ab066bc
Refine argument type
chuckwondo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ htmlcov | |
dist | ||
site | ||
.coverage | ||
.coverage.* | ||
coverage.xml | ||
.netlify | ||
test.db | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I don't remember why this was here, a meta test about environment variables being present I think.
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.
Yeah, I searched through the code and found where this appeared, and the logic did not appear to be doing anything in this regard, so I eliminated its code use as well. I suspect this was perhaps originally a way to configure 2 sets of creds locally, where 1 set was someone's "real" creds (the vars without
TEST
in the names), and a second set for "test" creds, so that when running integration tests locally, you could avoid using your "real" creds. However, I don't see any real value in that.