From 9485a586333d2440f7ef310f1d5908f627c59a21 Mon Sep 17 00:00:00 2001 From: William Silversmith Date: Mon, 30 Jul 2018 01:46:34 -0400 Subject: [PATCH] fix: point travis to right test file --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 43b3568..d400b01 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,6 @@ install: - if [[ $PYTHON_MAJOR_VERSION == 2 ]]; then pip install -e .; fi - if [[ $PYTHON_MAJOR_VERSION == 3 ]]; then pip3 install -e .; fi script: -- if [[ $PYTHON_MAJOR_VERSION == 2 ]]; then py.test -v -x test; fi -- if [[ $PYTHON_MAJOR_VERSION == 3 ]]; then python3 -m pytest -v -x test; fi +- if [[ $PYTHON_MAJOR_VERSION == 2 ]]; then py.test -v -x test.py; fi +- if [[ $PYTHON_MAJOR_VERSION == 3 ]]; then python3 -m pytest -v -x test.py; fi