Skip to content

Bump pytest from 7.2.2 to 8.0.2 #690

Bump pytest from 7.2.2 to 8.0.2

Bump pytest from 7.2.2 to 8.0.2 #690

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: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/[email protected]
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f development.txt ]; then pip install -r development.txt; fi
- name: Test with pytest
run: |
pytest --cov-config=.coveragerc --cov=pyfuncol --cov-report=xml
- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v3