Skip to content

Release of version 2.2.0 (#83) #16

Release of version 2.2.0 (#83)

Release of version 2.2.0 (#83) #16

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