From f09d170190e8d45da9ac61c7818eb44d093635c4 Mon Sep 17 00:00:00 2001
From: jay <jlaura@asu.edu>
Date: Thu, 6 Jul 2017 10:45:08 -0700
Subject: [PATCH] Switching from nose to pytest

---
 .travis.yml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 7a2c932..f1d26c7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -49,8 +49,7 @@ install:
   - conda install -c jlaura pvl protobuf
 
   # Development installation
-  - conda install nose coverage sh anaconda-client
-  - pip install coveralls pytest
+  - conda install pytest  pytest-cov sh anaconda-client
 
   # Straight from the menpo team
   - if [["$TRAVIS_OS_NAME" == "osx"]]; then
@@ -62,7 +61,7 @@ install:
 
 
 script:
-  - nosetests --with-coverage --cover-package=plio
+  - pytest --cov=plio 
   # After test success, package and upload to Anaconda
   - ~/miniconda/bin/python condaci.py build ./conda
 
-- 
GitLab