forked from digidotcom/python-devicecloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoxtest.sh
executable file
·38 lines (32 loc) · 1.01 KB
/
toxtest.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
#
# Script that will try to test this codebase against as many
# python versions as is possible. It does this using a combination
# of pyenv (for building various interpreters) and tox for
# testing using each of those interpreters.
#
pyversions=(2.7.7
3.2.5
3.3.5
3.4.1
pypy-2.3.1)
# first make sure that pyenv is installed
if [ ! -s "$HOME/.pyenv/bin/pyenv" ]; then
curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
fi
# add pyenv to our path and initialize (if this has not already been done)
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
# install each python version that we want to test with
for pyversion in ${pyversions[*]};
do
pyenv install -s ${pyversion}
done
pyenv rehash
# This is required
pyenv global ${pyversions[*]}
# Now, run the tests after sourcing venv for tox install/use
virtualenv -q .toxenv
source .toxenv/bin/activate
pip install -q -r test-requirements.txt
tox --recreate