libretime/travis/test.sh

19 lines
279 B
Bash
Executable File

#!/bin/bash
set -xe
if [[ -n "$TRAVIS_PHP_VERSION" ]]; then
pushd airtime_mvc/tests
../../vendor/bin/phpunit
popd
fi
if [[ -n "$TRAVIS_PYTHON_VERSION" ]]; then
pushd python_apps/airtime_analyzer
nosetests
popd
pushd python_apps/api_clients
nosetests
popd
fi