-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add scans * grouped reduce * Some fixes. * Updates for ffill * Better ffill * Support numpy * cleanup * more tests * Fix ffill * [WIP] expand tests * Fixes. we need two versions of binary_op * Fix ffill again * Disable cumsum for now. * Fixes. * Fix tests: Remove overflowing test cases, proper fill_value * typing * Fix tests * Try and avoid some roundoff error * Skip float32 for cumsum * fix min deps test * Another fix * Silence warnings * Cleanup * Add docs * fix * bfill * Fix test * hypothesis: Better CI profile * Small change. * Add hypothesis to all envs * Generate chunking along all dimensions * lint * more guards * more guards * fix * Fix typing * cleanup * fix mypy * Add comments
- Loading branch information
Showing
15 changed files
with
688 additions
and
49 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 |
---|---|---|
|
@@ -62,7 +62,7 @@ jobs: | |
- name: Run Tests | ||
id: status | ||
run: | | ||
pytest -n auto --cov=./ --cov-report=xml | ||
pytest -n auto --cov=./ --cov-report=xml --hypothesis-profile ci | ||
- name: Upload code coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ channels: | |
- conda-forge | ||
dependencies: | ||
- codecov | ||
- hypothesis | ||
- pip | ||
- pytest | ||
- pytest-cov | ||
|
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ channels: | |
dependencies: | ||
- codecov | ||
- pandas | ||
- hypothesis | ||
- cftime | ||
- numpy>=1.22 | ||
- scipy | ||
|
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 |
---|---|---|
|
@@ -7,6 +7,7 @@ dependencies: | |
- cftime | ||
- codecov | ||
- dask-core | ||
- hypothesis | ||
- pandas | ||
- numpy>=1.22 | ||
- scipy | ||
|
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.