requirements(deps): bump pytest from 7.4.1 to 7.4.2 #493
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2022 Sebastian Pipping <[email protected]> | |
# Licensed under GPL v2 or later | |
name: Run Python test suite | |
on: | |
- pull_request | |
- push | |
jobs: | |
python_test_suite: | |
name: Run Python test suite | |
strategy: | |
matrix: | |
python-version: [3.8, 3.11] # no particular need for in-between versions | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install build dependencies | |
run: |- | |
set -x | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends --yes -V \ | |
grub-common \ | |
mtools \ | |
xorriso | |
python3 -m venv venv/ | |
source venv/bin/activate | |
pip3 install -r requirements.txt | |
pip3 check | |
diff -u0 <(pip3 freeze | sed 's,_,-,g' | sort -f) <(sed -e '/^#/d' -e '/^$/d' requirements.txt | sort -f) | |
- name: Run Python test suite | |
run: |- | |
set -x | |
source venv/bin/activate | |
coverage run -m pytest -v -s | |
coverage report |