summaryrefslogtreecommitdiff
path: root/tests/gh-python.sh
blob: 903758b3ea18b8e7ade3e1e0a1fd0cdb416ca4b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
set -u

PYTHON_VERSION="$1"
. "./tests/gh-shared.sh"


for WSGI_FILE in tests/staticfile.py tests/testworkers.py tests/testrpc.py ; do
  test_python "${PYTHON_VERSION}" "${WSGI_FILE}"
done

results