diff --git a/README.md b/README.md index 774845e..8a8b3d3 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +# andrew wuz here + # gitgoing [![Build Status](https://travis-ci.org/CodeNeuro/gitgoing.png?branch=master)](https://travis-ci.org/CodeNeuro/gitgoing) diff --git a/tests/test_gitgoing.py b/tests/test_gitgoing.py index 1a34cdc..9bba21c 100755 --- a/tests/test_gitgoing.py +++ b/tests/test_gitgoing.py @@ -37,14 +37,14 @@ def test_std_plus_one(x_norm): true_std = np.std(x_norm) + 1 assert test_std == true_std -# def test_cv_broken(x_norm): -# from gitgoing.gitgoing import std_plus_one, mean_plus_one, cv +def test_cv_broken(x_norm): + from gitgoing import std_plus_one, mean_plus_one, cv -# test_cv = cv(x_norm) -# true_cv = std_plus_one(x_norm)/mean_plus_one(x_norm) + test_cv = cv(x_norm) + true_cv = mean_plus_one(x_norm)/std_plus_one(x_norm) -# # This test will fail -# assert test_cv == true_cv + # This test will fail + assert test_cv == true_cv @pytest.fixture(params=['soma', 'axon', 'synapse', 'dendrite', pytest.mark.xfail('fibroblast')])