commit 787d92c4eec149389b42051578df12e2429c5eb6 parent 441ace5ec40091d49cc524ef5839d057046df8b1 Author: nolash <dev@holbrook.no> Date: Mon, 6 Sep 2021 15:48:06 +0200 Add http server Diffstat:
A | MANIFEST.in | | | 1 | + |
A | run_tests.sh | | | 10 | ++++++++++ |
2 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/MANIFEST.in b/MANIFEST.in @@ -0,0 +1 @@ +include *requirements* diff --git a/run_tests.sh b/run_tests.sh @@ -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