Skip to content

[renovate] Update dependency pytest to v7.4.4 #82

[renovate] Update dependency pytest to v7.4.4

[renovate] Update dependency pytest to v7.4.4 #82

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: unit_tests
on:
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
name: unit_tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install flake8 pytest
python3 -m pip install -r src/requirements.txt
- name: Test with pytest
run: |
python3 -m pytest