Skip to content

Update pytest from 6.2.5 to 8.3.3 #560

Update pytest from 6.2.5 to 8.3.3

Update pytest from 6.2.5 to 8.3.3 #560

Workflow file for this run

name: Test Application
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Test with pytest
run: |
python -m pytest tests