1
0
mirror of https://github.com/pypiserver/pypiserver synced 2024-11-09 16:45:51 +01:00
pypiserver/bin/test_standalone.sh
ankostis on tokoti bd3612d79a FIX standalone generation under PY3.
Add standalone-creation TC.
2015-09-14 09:56:53 +02:00

11 lines
211 B
Bash
Executable File

#! /bin/sh
my_dir="$(dirname "$0")"
cd $my_dir/..
./bin/commit-standalone.sh no_commit
./pypi-server-standalone.py &
server_pid=$!
sleep 2
kill $server_pid # Killing will fail if server had failed to start.