File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ virtualenv testenv4
18
18
19
19
# First we test the head
20
20
source testenv1/bin/activate
21
- pip install -U setuptools==20.10.1
21
+ pip uninstall -y setuptools \
22
+ && rm testenv1/lib/python-wheels/setuptools* \
23
+ && pip install -U setuptools==20.10.1
22
24
make install-dependencies
23
25
make test
24
26
pip uninstall -y ${package} || true ; pip uninstall -y ${package} || true ; make install
@@ -32,7 +34,9 @@ pushd testenv1/not-${module}; ../bin/${run_tests}; popd
32
34
33
35
cd testenv2
34
36
source bin/activate
35
- pip install -U setuptools==20.10.1
37
+ pip uninstall -y setuptools \
38
+ && rm lib/python-wheels/setuptools* \
39
+ && pip install -U setuptools==20.10.1
36
40
pip install -e git+${repo} @${HEAD} # egg=${package}
37
41
cd src/${package}
38
42
make install-dependencies
@@ -48,7 +52,9 @@ bin/${run_tests}
48
52
49
53
cd ../testenv3/
50
54
source bin/activate
51
- pip install -U setuptools==20.10.1
55
+ pip uninstall -y setuptools \
56
+ && rm lib/python-wheels/setuptools* \
57
+ && pip install -U setuptools==20.10.1
52
58
pip install ${package} * tar.gz
53
59
pip install pytest
54
60
tar xzf ${package} * tar.gz
You can’t perform that action at this time.
0 commit comments