From 8051d0c401cd7fb1b005ca31674dfac3eee82b52 Mon Sep 17 00:00:00 2001 From: Ayodeji Remi-Omosowon Date: Sun, 15 Mar 2020 02:05:21 +0000 Subject: [PATCH 1/4] Update TravisCI build config * The build is currently failing due to a known versioning issue with the "zipp" package on py27. Updating pip apparently fixes this * Updated python 3 to "3.8" (from "3.6") --- .travis.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6967ce0..1ce32e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,12 +4,16 @@ language: python python: - "2.7" - - "3.6" + - "3.8" + +before_install: + - python --version + - pip install -U pip + - pip install coveralls # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install -r requirements.txt - - pip install coveralls # command to run tests, e.g. python setup.py test script: From 9a088d69d27f7e4c8e5a16a045b31efed17e862e Mon Sep 17 00:00:00 2001 From: Ayodeji Remi-Omosowon Date: Sun, 15 Mar 2020 02:15:13 +0000 Subject: [PATCH 2/4] Update .travis.yml --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 1ce32e5..bc10c15 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,7 @@ before_install: - python --version - pip install -U pip - pip install coveralls + - pip install -r requirements.dev # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: From 744f39df94e9127d52d3064012ee23543e8b1c4d Mon Sep 17 00:00:00 2001 From: Ayodeji Remi-Omosowon Date: Sun, 15 Mar 2020 02:23:23 +0000 Subject: [PATCH 3/4] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bc10c15..30ea546 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ install: # command to run tests, e.g. python setup.py test script: - coverage run --source=pyeasyga setup.py test + python -m unittest discover tests/ after_success: coveralls From dcbd9a9eeb58e4f790545642489a8022107e8f40 Mon Sep 17 00:00:00 2001 From: Ayodeji Remi-Omosowon Date: Sun, 15 Mar 2020 02:26:30 +0000 Subject: [PATCH 4/4] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 30ea546..079f10f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ before_install: - python --version - pip install -U pip - pip install coveralls - - pip install -r requirements.dev + - pip install -U coverage # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: