2015-10-06 22:32:59 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
|
|
tox -e py27,py34 -- tests/unit
|
|
|
|
else
|
|
|
|
# TODO: we could also install py34 and test against it
|
2016-07-01 00:40:39 +02:00
|
|
|
tox -e py27 -- tests/unit
|
2015-10-06 22:32:59 +02:00
|
|
|
fi
|