-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP * --amend * WIP * Don't check unlimited dims for xarray-save-direct-vs-ncdata testing. * More WIP: replace dataclasses, partial datatype testing. * Factor out variable comparison; add show-n-diffs control. * Complete testing for variables and groups. * Fix test. * Add pytest-mock to testing dependencies. * Add additional testcases. * Rename + reorganise calling interfaces: variable-compare (still) not public. * Move dataset-difference into utils (public). * Move variable-differences testing into own testfile. * Revise comparison API; make variable-differences public. * Fix order of presentation of utils routines. * Add change note * Re-enable iris testdata checks.
- Loading branch information
Showing
17 changed files
with
1,464 additions
and
624 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
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 |
---|---|---|
@@ -1,5 +1,10 @@ | ||
"""General user utility functions.""" | ||
|
||
from ._compare_nc_datasets import dataset_differences, variable_differences | ||
from ._save_errors import save_errors | ||
|
||
__all__ = ["save_errors"] | ||
__all__ = [ | ||
"save_errors", | ||
"dataset_differences", | ||
"variable_differences", | ||
] |
Oops, something went wrong.