Skip to content

Commit dbc4c4c

Browse files
committed
release test: only test at the end
1 parent a89517c commit dbc4c4c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

release-test.sh

+7-7
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ then
4343
&& pip install --force-reinstall -U pip==${pipver} \
4444
&& pip install setuptools==${setuptoolsver} wheel
4545
pip install -rtest-requirements.txt ".${extras}"
46-
make test
46+
#make test
4747
pip uninstall -y ${package} || true; pip uninstall -y ${package} || true; make install
48-
mkdir testenv1/not-${module}
48+
# mkdir testenv1/not-${module}
4949
# if there is a subdir named '${module}' py.test will execute tests
5050
# there instead of the installed module's tests
51-
pushd testenv1/not-${module}
52-
# shellcheck disable=SC2086
53-
test_prefix=../ run_tests; popd
51+
# pushd testenv1/not-${module}
52+
# #shellcheck disable=SC2086
53+
# test_prefix=../ run_tests; popd
5454
fi
5555

5656
python3 -m venv testenv2
@@ -71,12 +71,12 @@ pip install -e "git+${repo}@${HEAD}#egg=${package}${extras}"
7171
pushd src/${package}
7272
pip install -rtest-requirements.txt
7373
make dist
74-
make test
74+
#make test
7575
cp dist/${package}*tar.gz ../../../testenv3/
7676
pip uninstall -y ${package} || true; pip uninstall -y ${package} || true; make install
7777
popd # ../.. no subdir named ${proj} here, safe for py.testing the installed module
7878
# shellcheck disable=SC2086
79-
run_tests
79+
#run_tests
8080
popd
8181

8282
# Is the source distribution in testenv2 complete enough to build another

0 commit comments

Comments
 (0)