-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dmrpp_tutorial_nb
- Loading branch information
Showing
44 changed files
with
1,840 additions
and
339 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Generate Discussion Thread for Hackdays | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
create-discussion-threads: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
discussions: write | ||
contents: read | ||
|
||
steps: | ||
|
||
- name: Generate the Hackathon title | ||
run: | | ||
DATE=$(date --iso-8601 | sed 's|-|/|g') | ||
echo "DISCUSSION_TITLE=Hackathon $DATE" >> $GITHUB_ENV | ||
- name: Set the Hackathon description | ||
run: | | ||
echo "DISCUSSION_BODY=Reporting out on earthaccess hack days. Use the 'comment' button at the very bottom to send a message. Additionally, consider sending issues and PRs relevant to your work to help make the job of future readers easier. It is okay to duplicate information here! Use the reply feature to have a discussion under any comment. Enjoy!" >> $GITHUB_ENV | ||
- name: Create Discussions | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
REPOSITORY_ID: MDEwOlJlcG9zaXRvcnkzOTk4Njc1Mjk= | ||
CATEGORY_ID: DIC_kwDOF9V-ic4CdYaN | ||
run: | | ||
gh api graphql -f query=" | ||
mutation | ||
{createDiscussion | ||
( | ||
input: | ||
{ | ||
repositoryId: \"${{ env.REPOSITORY_ID }}\", | ||
categoryId: \"${{ env.CATEGORY_ID }}\", | ||
body: \"${{ env.DISCUSSION_BODY }}\", | ||
title: \"${{ env.DISCUSSION_TITLE }}\" | ||
} | ||
) | ||
{ | ||
discussion {id} | ||
} | ||
}" |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Integration tests | ||
|
||
## Testing most popular datasets | ||
|
||
Some integration tests operate on the most popular collections for each provider in CMR. | ||
Those collection IDs are cached as static data in `tests/integration/popular_collections/` | ||
to give our test suite more stability. The list of most popular collections can be | ||
updated by running a script in the same directory. | ||
|
||
Sometimes, we find collections with unexpected conditions, like 0 granules, and | ||
therefore "comment" those collections from the list by prefixing the line with a `#`. | ||
|
||
!!! note | ||
|
||
Let's consider a CSV format for this data; we may want to, for example, allow | ||
skipping collections with a EULA by representing that as a column. |
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
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
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
Oops, something went wrong.