diff --git a/circle.yml b/circle.yml index 35d34eba29..92d479f54c 100644 --- a/circle.yml +++ b/circle.yml @@ -31,7 +31,7 @@ dependencies: - pip install -r requirements/edx/base.txt - if [ -e requirements/edx/post.txt ]; then pip install -r requirements/edx/post.txt ; fi - - pip install coveralls + - pip install coveralls==1.0 test: override: diff --git a/requirements/edx/base.txt b/requirements/edx/base.txt index 47855337ea..4ba60b4ba1 100644 --- a/requirements/edx/base.txt +++ b/requirements/edx/base.txt @@ -121,7 +121,7 @@ django_debug_toolbar==1.3.2 astroid==1.3.8 bok-choy==0.4.3 chrono==1.0.2 -coverage==4.0b3 +coverage==4.0 ddt==0.8.0 diff-cover==0.8.0 django-crum==0.5 diff --git a/scripts/jenkins-report.sh b/scripts/jenkins-report.sh index 2da36de4d5..ee40b1f526 100755 --- a/scripts/jenkins-report.sh +++ b/scripts/jenkins-report.sh @@ -10,7 +10,7 @@ paver coverage # Send the coverage data to coveralls. Setting 'TRAVIS_BRANCH' allows the # data to be sorted by branch in the coveralls UI. The branch is passed as # a param to the coverage job on jenkins. -pip install coveralls==1.0b1 +pip install coveralls==1.0 COVERALLS_REPO_TOKEN=$1 TRAVIS_BRANCH=$2 coveralls # Get coverage reports for bok choy