Skip to content
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

tests for datasets with units #3447

Merged
merged 22 commits into from
Nov 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
53fea49
start writing the tests for dataset
keewis Oct 25, 2019
3cf2c7d
add tests for initializing Datasets
keewis Oct 26, 2019
93e75fe
add tests for aggregation methods / functions
keewis Oct 27, 2019
9591245
add tests for the ndarray methods / properties
keewis Oct 27, 2019
c84cb75
add tests for missing value handling methods
keewis Oct 29, 2019
a7891cb
add tests for comparison methods
keewis Oct 29, 2019
26c9eb9
add tests for reordering / stacking
keewis Oct 29, 2019
7eee944
add tests for indexing methods
keewis Oct 30, 2019
ad661cc
remove the commented out xfail on Dataset.squeeze
keewis Oct 30, 2019
eac43d1
add tests for head, tail and thin
keewis Oct 30, 2019
58b097a
add tests for the computation methods
keewis Oct 30, 2019
7cf5fa7
add tests for grouped operations
keewis Oct 30, 2019
f5ec8f7
Merge branch 'master' into tests-for-datasets-with-units
keewis Oct 30, 2019
1bdcf90
add tests for the content manipulation methods
keewis Oct 30, 2019
ce80520
fix reindex_like to actually expect errors where appropriate
keewis Oct 30, 2019
aac55eb
use DataArray.copy to replicate a DataArray with different data
keewis Oct 30, 2019
8081f20
add tests for repr / str
keewis Oct 30, 2019
ebb8672
remove the comment about moving the merge tests
keewis Oct 30, 2019
8be37be
construct a new data array instead of using `copy`
keewis Nov 4, 2019
10a06e0
Merge branch 'master' into tests-for-datasets-with-units
keewis Nov 7, 2019
1a7d878
update whats-new.rst
keewis Nov 7, 2019
7ab5e49
Merge branch 'master' into tests-for-datasets-with-units
keewis Nov 7, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Internal Changes
~~~~~~~~~~~~~~~~

- Added integration tests against `pint <https://pint.readthedocs.io/>`_.
(:pull:`3238`) by `Justus Magin <https://github.com/keewis>`_.
(:pull:`3238`, :pull:`3447`) by `Justus Magin <https://github.com/keewis>`_.

.. note::

Expand Down
Loading