summaryrefslogtreecommitdiff
path: root/travis_selector.sh
diff options
context:
space:
mode:
authorDana Powers <dana.powers@rd.io>2016-01-01 15:04:51 -0800
committerDana Powers <dana.powers@rd.io>2016-01-01 22:44:19 -0800
commit1a6ff2615cebde0dab49151b4b8a15fc97edb4e6 (patch)
tree517ab0ebb631a3b4a7f15b3b223b3dabd8525fa8 /travis_selector.sh
parentcb325af5ffc3f711842e103130a87d5b073a9ff5 (diff)
downloadkafka-python-1a6ff2615cebde0dab49151b4b8a15fc97edb4e6.tar.gz
Use pytest instead of nose for running tests via tox
- use pytest-sugar for pretty output - add linting to each python tox environment - drop lint as separate tox target - replace travis_selector.sh with shell magic
Diffstat (limited to 'travis_selector.sh')
-rwxr-xr-xtravis_selector.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/travis_selector.sh b/travis_selector.sh
deleted file mode 100755
index 5700cbc..0000000
--- a/travis_selector.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-# This works with the .travis.yml file to select a python version for testing
-
-if [ $1 == "pypy" ]; then
- echo "pypy"
-elif [ $1 == "3.5" ]; then
- echo "py35"
-elif [ $1 == "3.4" ]; then
- echo "py34"
-elif [ $1 == "3.3" ]; then
- echo "py33"
-elif [ $1 == "2.7" ]; then
- echo "py27"
-elif [ $1 == "2.6" ]; then
- echo "py26"
-else
- echo $1
-fi;