Skip to content

Bump gunicorn from 19.9.0 to 22.0.0 #14

Bump gunicorn from 19.9.0 to 22.0.0

Bump gunicorn from 19.9.0 to 22.0.0 #14

Workflow file for this run

name: Unit tests
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.8"
- python-version: "3.9"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install apt dependencies
run: |
sudo apt-get update
sudo apt-get install -y libdb-dev
- name: Install pip dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
pip install -e .[server]
pip install pytest
- name: Run tests
run: |
pytest -vv filetracker/tests