Skip to content

make all BufferedIOFile args keyword only except path #159

make all BufferedIOFile args keyword only except path

make all BufferedIOFile args keyword only except path #159

Workflow file for this run

name: Tests
on: [push, workflow_call]
jobs:
test:
strategy:
matrix:
python-version: ["3.12"]
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: pytest
run: |
pip install -r test/requirements.txt
pytest --cov=duplicates --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
# # No longer required as using app integration
# env:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: tox
run: |
pip install tox
tox