Skip to content

Commit

Permalink
remove mean test
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew McCluskey committed Apr 22, 2020
1 parent bf7269d commit 8d08ee1
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions uravu/tests/test_distribution.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,23 +109,6 @@ def test_check_normality_less_than_3(self):
distro = Distribution(np.random.randn(2))
assert_equal(distro.normal, False)

def test_mean_a(self):
"""
Test the mean parameter
"""
np.random.seed(1)
distro = Distribution(np.random.randn(2000))
assert_almost_equal(distro.mean.n, 0.034504725958795925)
assert_almost_equal(distro.mean.s, 1.0058360180170436)

def test_mean_b(self):
"""
Test the mean parameter when not normal
"""
np.random.seed(1)
distro = Distribution(np.random.random(2000))
assert_equal(distro.mean, None)

def test_add_samples_single(self):
"""
Test add_samples with a single value.
Expand Down

0 comments on commit 8d08ee1

Please sign in to comment.