mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
11 lines
197 B
Bash
Executable File
11 lines
197 B
Bash
Executable File
#!/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
|
|
tox -e py27 -- tests/unit
|
|
fi
|