Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
williamjameshandley authored Jul 19, 2023
2 parents d6da757 + cb2759c commit 57b00e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion anesthetic/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.1.0'
__version__ = '2.1.0'
4 changes: 2 additions & 2 deletions tests/test_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,9 @@ def test_regex_escape():
@pytest.mark.parametrize('root', ['pc', 'gd'])
@pytest.mark.skipif(pytables_imported is False,
reason="requires tables package")
def test_hdf5(root):
def test_hdf5(tmp_path, root):
samples = read_chains('./tests/example_data/' + root)
filename = 'test_hdf5.h5'
filename = tmp_path / ('test_hdf5' + root + '.h5')
key = "samples"

with HDFStore(filename) as store:
Expand Down

0 comments on commit 57b00e1

Please sign in to comment.