Merge branch 'develop' into documentation

This commit is contained in:
fjosw 2021-11-15 14:38:56 +00:00
commit b607041689
2 changed files with 5 additions and 1 deletions

View file

@ -519,3 +519,6 @@ def test_jackknife():
tmp_jacks[i + 1] = (n * mean - full_data[i]) / (n - 1)
assert np.allclose(tmp_jacks, my_obs.export_jackknife())
my_new_obs = my_obs + pe.Obs([full_data], ['test2'])
with pytest.raises(Exception):
my_new_obs.export_jackknife()