From 1cfbe9f99332df455ccb874b5ae87b955d4dc178 Mon Sep 17 00:00:00 2001 From: Andrew Hundt Date: Sat, 2 Dec 2017 16:41:28 -0500 Subject: [PATCH] .travis.yml remove coveralls removing coveralls because it is breaking the build and isn't set up anyway --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index de85d02..be93c59 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,9 +32,9 @@ install: - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib pandas pytest h5py - source activate test-environment - - pip install pytest-cov python-coveralls pytest-xdist coverage==3.7.1 #we need this version of coverage for coveralls.io to work + - pip install pytest-cov pytest-xdist - pip install pep8 pytest-pep8 - - conda install mkl mkl-service coverage==3.7.1 + - conda install mkl mkl-service - pip install theano - pip install git+git://github.com/fchollet/keras.git @@ -77,5 +77,3 @@ script: else PYTHONPATH=$PWD:$PYTHONPATH py.test tests/ --ignore=tests/integration_tests --ignore=tests/test_documentation.py --cov=keras tests/ --cov-report term-missing; fi -after_success: - - coveralls