1
0
mirror of https://github.com/pypiserver/pypiserver synced 2024-11-09 16:45:51 +01:00
pypiserver/bin/test_standalone.sh

11 lines
211 B
Bash
Raw Normal View History

#! /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.