9 lines
135 B
Bash
Executable file
9 lines
135 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
pip install tox==2.1.1
|
|
else
|
|
pip install --user tox==2.1.1
|
|
fi
|