mirror of
https://github.com/ading2210/libcurl.js.git
synced 2025-05-12 05:50:01 -04:00
11 lines
185 B
Bash
Executable file
11 lines
185 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
trap "exit" INT TERM
|
|
trap "kill 0" EXIT
|
|
STATIC="$(pwd)" python3 ../server/wisp_server/main.py >/dev/null &
|
|
|
|
sleep 1
|
|
echo "Running tests"
|
|
python3 tests/run_tests.py
|