diff options
author | Jon Bernard <jbernard@tuxion.com> | 2014-07-07 14:03:42 -0400 |
---|---|---|
committer | Jon Bernard <jbernard@tuxion.com> | 2014-07-07 14:03:42 -0400 |
commit | 1230b894fef057ccbdb20128707a57ef5cdd00a3 (patch) | |
tree | 009fc9dbc3d3ce9c9654a85764fa764612e53322 | |
parent | a44bb8ef5d9dcdc6708403a96c5c27076d6ec606 (diff) | |
download | dotfiles-1230b894fef057ccbdb20128707a57ef5cdd00a3.tar.gz dotfiles-1230b894fef057ccbdb20128707a57ef5cdd00a3.tar.bz2 dotfiles-1230b894fef057ccbdb20128707a57ef5cdd00a3.zip |
Update travis configuration to use make test
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index a78e828..1949963 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,11 +4,11 @@ python: - "2.7" - "3.2" - "3.3" + - "3.4" + - "pypy" -# command to install dependencies install: - - "pip install . --use-mirrors" + - "pip install --editable ." -# command to run tests script: - - "python test_dotfiles.py" + - "make test" |