Skip to content

[#47] Fix duplicate hooks exception when they have similar names #61

[#47] Fix duplicate hooks exception when they have similar names

[#47] Fix duplicate hooks exception when they have similar names #61

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: Python testing
on:
push:
branches:
- master
- 'release/**'
paths-ignore:
- 'docs/**'
pull_request:
branches:
- master
- 'release/**'
paths-ignore:
- 'docs/**'
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test with pytest
run: |
tox -e py39