diff --git a/.travis.yml b/.travis.yml index 34d4141..283281c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,6 @@ install: - pip install --only-binary=numpy,scipy numpy scipy - pip install -r test_requirements.txt script: - - nosetests \ No newline at end of file + - make test +after_success: + - coveralls \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3eab293 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +test: + nosetests --with-coverage --cover-package=src \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index b34e57b..268901e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ boto3 == 1.4.4 -coverage == 4.3.4 +coveralls == 1.1 mock == 1.3.0 requests == 2.2.0 scipy == 0.19.0 diff --git a/test_requirements.txt b/test_requirements.txt index a5a86b7..4498e42 100644 --- a/test_requirements.txt +++ b/test_requirements.txt @@ -1,5 +1,5 @@ boto3 == 1.4.4 -coverage == 4.3.4 +coveralls == 1.1 mock == 1.3.0 requests == 2.2.0 statistics == 1.0.3.5