File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -51,9 +51,13 @@ echo "$ git submodule sync && git submodule update --init --recursive"
5151
5252git submodule sync && git submodule update --init --recursive
5353
54- echo " pipenv run pypi-server run -v --host=0.0.0.0 --port=8080 --hash-algo=sha256 --disable-fallback ./tests/pypi/ ./tests/fixtures &"
55-
56- pipenv run pypi-server run -v --host=0.0.0.0 --port=8080 --hash-algo=sha256 --disable-fallback ./tests/pypi/ ./tests/fixtures &
54+ readonly RUN_PYPI_SERVER=" \
55+ pipenv run pypi-server run -v --host=0.0.0.0 --port=8080 --hash-algo=sha256 \
56+ --disable-fallback ./tests/pypi/ ./tests/fixtures --welcome /dev/null"
57+ echo " ${RUN_PYPI_SERVER} &"
58+ eval " ${RUN_PYPI_SERVER} &"
59+ PYPI_SERVER_PID=$!
60+ trap " kill ${PYPI_SERVER_PID} " SIGINT SIGTERM EXIT
5761
5862echo " $pipenv run pytest -v -ra -n auto --cov-config pyproject.toml --fulltrace tests"
5963
You can’t perform that action at this time.
0 commit comments