summaryrefslogtreecommitdiff
path: root/.github/workflows/install-deps.sh
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/install-deps.sh')
-rwxr-xr-x.github/workflows/install-deps.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/install-deps.sh b/.github/workflows/install-deps.sh
new file mode 100755
index 0000000..848c24d
--- /dev/null
+++ b/.github/workflows/install-deps.sh
@@ -0,0 +1,15 @@
+#!/usr/bin/env bash
+set -e
+set -x
+
+# Test utilities
+pip install -U pip pytest coverage
+
+# Test dependencies (Server back-ends and template engines)
+sudo apt-get install -y libev-dev
+pip install mako jinja2
+
+for name in waitress "cherrypy<9" cheroot paste tornado twisted diesel meinheld\
+ gunicorn eventlet flup fapws3 rocket bjoern gevent uvloop; do
+ pip install $name || echo "Failed to install $name with $(python -V 2>&1)" 1>&2
+done