mirror of
https://github.com/pypiserver/pypiserver
synced 2024-11-09 16:45:51 +01:00
bd3612d79a
Add standalone-creation TC.
11 lines
211 B
Bash
Executable File
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.
|