File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 38
38
&& pip install setuptools==${setuptoolsver} wheel
39
39
make install-dep
40
40
pip install .
41
- # pip install 'galaxy-lib>=17.09.3'
42
- make test
41
+ python setup.py test
43
42
pip uninstall -y ${package} || true ; pip uninstall -y ${package} || true ; make install
44
43
mkdir testenv1/not-${module}
45
44
# if there is a subdir named '${module}' py.test will execute tests
@@ -62,12 +61,11 @@ source bin/activate
62
61
rm lib/python-wheels/setuptools* \
63
62
&& pip install --force-reinstall -U pip==${pipver} \
64
63
&& pip install setuptools==${setuptoolsver} wheel
65
- # pip install 'galaxy-lib==17.09.3'
66
64
pip install -e " git+${repo} @${HEAD} #egg=${package} " # [deps]
67
65
cd src/${package}
68
66
make install-dep
69
67
make dist
70
- make test
68
+ python setup.py test
71
69
cp dist/${package} * tar.gz ../../../testenv3/
72
70
pip uninstall -y ${package} || true ; pip uninstall -y ${package} || true ; make install
73
71
cd ../.. # no subdir named ${proj} here, safe for py.testing the installed module
@@ -85,14 +83,13 @@ rm lib/python-wheels/setuptools* \
85
83
&& pip install setuptools==${setuptoolsver} wheel
86
84
package_tar=${package} * tar.gz
87
85
pip install " -r${DIR} /test-requirements.txt"
88
- # pip install 'galaxy-lib==17.09.3'
89
86
pip install ${package_tar} # [deps]
90
87
mkdir out
91
88
tar --extract --directory=out -z -f ${package} * .tar.gz
92
89
cd out/${package} *
93
90
make install-dep
94
91
make dist
95
- make test
92
+ python setup.py test
96
93
pip uninstall -y ${package} || true ; pip uninstall -y ${package} || true ; make install
97
94
mkdir ../not-${module}
98
95
pushd ../not-${module}
You can’t perform that action at this time.
0 commit comments