Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
OriolAbril committed Jun 10, 2023
1 parent b46d3ef commit b1a6ff5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
### New features

- Bayes Factor plot: Use arviz's kde instead of the one from scipy ([2237](https://github.com/arviz-devs/arviz/pull/2237))
- InferenceData objects can now be appended to existing netCDF4 files
- InferenceData objects can now be appended to existing netCDF4 files and to specific groups within them ([2227](https://github.com/arviz-devs/arviz/pull/2227))

### Maintenance and fixes
Expand Down
4 changes: 2 additions & 2 deletions arviz/tests/base_tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,7 @@ def test_io_function(self, data, eight_schools_params):
os.remove(filepath)
assert not os.path.exists(filepath)

@pytest.mark.parametrize("base_group", ['/','/test_group'])
@pytest.mark.parametrize("base_group", ["/", "test_group", "group/subgroup"])
@pytest.mark.parametrize("groups_arg", [False, True])
@pytest.mark.parametrize("compress", [True, False])
@pytest.mark.parametrize("engine", ["h5netcdf", "netcdf4"])
Expand Down Expand Up @@ -1341,7 +1341,7 @@ def test_io_method(self, data, eight_schools_params, groups_arg, base_group, com
# assert file has been saved correctly
assert os.path.exists(filepath)
assert os.path.getsize(filepath) > 0
inference_data2 = InferenceData.from_netcdf(filepath,base_group=base_group)
inference_data2 = InferenceData.from_netcdf(filepath, base_group=base_group)
if groups_arg: # if groups arg, update test dict to contain only saved groups
test_dict = {
"posterior": ["eta", "theta", "mu", "tau"],
Expand Down

0 comments on commit b1a6ff5

Please sign in to comment.