diff --git a/.travis.yml b/.travis.yml index 70c1cf8f6..ab31f5968 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,6 @@ install: - pip install -r requirements.txt --use-mirrors - pip install pytest-xdist --use-mirrors # command to run tests -script: make test TESTS=tests.test_util +script: make test TESTS=tests/test_util.py #notifications: # email: false diff --git a/Makefile b/Makefile index a838f5e45..a071acc28 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,5 @@ # This Makefile is only used by developers. -PYVER:=2.7 -PYTHON:=python$(PYVER) +PYTHON:=python VERSION:=$(shell $(PYTHON) setup.py --version) MAINTAINER:=$(shell $(PYTHON) setup.py --maintainer) AUTHOR:=$(shell $(PYTHON) setup.py --author)