Add http server

This commit is contained in:
nolash 2021-09-06 15:48:06 +02:00
parent 441ace5ec4
commit 787d92c4ee
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
2 changed files with 11 additions and 0 deletions

1
MANIFEST.in Normal file
View File

@ -0,0 +1 @@
include *requirements*

10
run_tests.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/bash
set -e
set -x
#export PYTHONPATH=${PYTHONPATH:.}
for f in `ls tests/*.py`; do
python $f
done
set +x
set +e