@@ -18,10 +18,9 @@ virtualenv testenv4
18
18
19
19
# First we test the head
20
20
source testenv1/bin/activate
21
- pip uninstall -y setuptools \
22
- && rm testenv1/lib/python-wheels/setuptools* \
21
+ rm testenv1/lib/python-wheels/setuptools* \
23
22
&& pip install --force-reinstall -U pip==1.5.6 \
24
- && pip install -U setuptools==20.10.1
23
+ && pip install setuptools==20.10.1
25
24
make install-dependencies
26
25
make test
27
26
pip uninstall -y ${package} || true ; pip uninstall -y ${package} || true ; make install
@@ -35,10 +34,9 @@ pushd testenv1/not-${module}; ../bin/${run_tests}; popd
35
34
36
35
cd testenv2
37
36
source bin/activate
38
- pip uninstall -y setuptools \
39
- && rm lib/python-wheels/setuptools* \
37
+ rm lib/python-wheels/setuptools* \
40
38
&& pip install --force-reinstall -U pip==1.5.6 \
41
- && pip install -U setuptools==20.10.1
39
+ && pip install setuptools==20.10.1
42
40
pip install -e git+${repo} @${HEAD} # egg=${package}
43
41
cd src/${package}
44
42
make install-dependencies
@@ -54,10 +52,9 @@ bin/${run_tests}
54
52
55
53
cd ../testenv3/
56
54
source bin/activate
57
- pip uninstall -y setuptools \
58
- && rm lib/python-wheels/setuptools* \
55
+ rm lib/python-wheels/setuptools* \
59
56
&& pip install --force-reinstall -U pip==1.5.6 \
60
- && pip install -U setuptools==20.10.1
57
+ && pip install setuptools==20.10.1
61
58
pip install ${package} * tar.gz
62
59
pip install pytest
63
60
tar xzf ${package} * tar.gz
0 commit comments