Skip to content

Update valhallaAPI/filters.py #33

Update valhallaAPI/filters.py

Update valhallaAPI/filters.py #33

Workflow file for this run

name: Python Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.11"]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt .
- name: Run offline pytest suite
run: python -m pytest -m "not integration" -v tests