You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are several tests that are accumulating in mth5/tests/version_1/test_fcs.py because that module also has
a function called create_mth5_with_some_test_data which makes an mth5 with some test data in the FC layer.
It would be nice if this dataset might be accessed by other test modules.
Question: How to do this?
formalize the test dataset by giving it a path in the mth5/data folder. Then it can be imported
But if we want to build the FC layer of the test dataset on the fly, we may run into problems with tests on read-only installations.
Maybe pytest.fixtures has a clever workaround for this?
The alternative of duplicating the code that builds the test dataset in other modules doesn't seem like a good workaround.
The text was updated successfully, but these errors were encountered:
- a sort of continuation of issue #209, but a new fork from patches as that branch is already merged
- add MultivariateLabelScheme() class to manage how we label multivariate channels
- add MultivariateDataset() class to wrap the MV xarray
- add some tests
- tests could be better organized if address issue #227
Context:
There are several tests that are accumulating in
mth5/tests/version_1/test_fcs.py
because that module also hasa function called
create_mth5_with_some_test_data
which makes an mth5 with some test data in the FC layer.It would be nice if this dataset might be accessed by other test modules.
Question: How to do this?
The text was updated successfully, but these errors were encountered: