summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rwxr-xr-x.github/workflows/install-deps.sh2
-rw-r--r--.github/workflows/run_tests.yml12
2 files changed, 6 insertions, 8 deletions
diff --git a/.github/workflows/install-deps.sh b/.github/workflows/install-deps.sh
index 283f1bf..7b9d07a 100755
--- a/.github/workflows/install-deps.sh
+++ b/.github/workflows/install-deps.sh
@@ -10,6 +10,6 @@ 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 bjoern gevent aiohttp-wsgi uvloop; do
+ gunicorn eventlet flup bjoern gevent aiohttp-wsgi uvloop; do
pip install $name || echo "Failed to install $name with $(python -V 2>&1)" 1>&2
done
diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml
index f878f8c..621048f 100644
--- a/.github/workflows/run_tests.yml
+++ b/.github/workflows/run_tests.yml
@@ -7,16 +7,14 @@ jobs:
strategy:
max-parallel: 5
matrix:
- python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
+ python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', 'pypy-2.7', 'pypy-3.6', 'pypy-3.7']
steps:
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- run: |
- .github/workflows/install-deps.sh
+ run: .github/workflows/install-deps.sh
- name: Run tests
- run: |
- pytest
+ run: pytest