From 0a7ba0b0f47b2c9c1832ff5ccba5316e695f4219 Mon Sep 17 00:00:00 2001 From: Jeffrey Milloy Date: Tue, 31 Dec 2019 11:13:24 -0500 Subject: [PATCH] CI: Attempts to fix coveralls on 3.5 and 3.8 by pinning coverage version. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e95ef0eeb..028875447 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,6 +28,7 @@ install: - sudo apt-get install -y gdal-bin libgdal-dev # install setup.py and dev extras + - pip install coverage==4.5.4 - pip install .[devall] # Allow Python exec and eval functions for unit tests @@ -49,12 +50,13 @@ script: - coveralls -# deploy docs to `podpac-docs` repository. This script only pushes the docs on pushes to develop and master. jobs: include: + # check formatting - stage: formatting python: "3.7" script: black --check podpac + # deploy docs to `podpac-docs` repository. This script only pushes the docs on pushes to develop and master. - stage: docs deploy python: "3.7" script: cd doc && ./ci-deploy.sh && cd ..