Skip to content

fix: Adjust dep. annotations for ent augmenter #91

fix: Adjust dep. annotations for ent augmenter

fix: Adjust dep. annotations for ent augmenter #91

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pytest-and-notebooks:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.8"]
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: "${{ github.workflow }} - ${{ matrix.python-version}} - ${{ matrix.os }} @ ${{ github.ref }}"
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "**/pyproject.toml"
- name: Install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
# Assumes the package have the tests extra
pip install ".[tests,all,da]"
# if there is a ./tests/requirements.txt file then install it
if [ -f ./tests/requirements.txt ]; then
pip install -r ./tests/requirements.txt
fi
- name: Run and write pytest
shell: bash
run: |
set -o pipefail
pytest --cov=augmenty --cov-report term-missing | tee pytest-coverage.txt
- name: Install dependencies for notebooks
shell: bash
run: |
# Assumes the package have the tutorials extra
pip install ".[tutorials]"
# if there is a tutorials requirements.txt file then install it
if [ -f ./tests/requirements.txt ]; then
pip install -r ./docs/tutorials/requirements.txt
fi
- name: Convert and run notebooks
shell: bash
run: |
jupyter nbconvert --to python ./docs/tutorials/*.ipynb
for f in docs/tutorials/*.py; do python "$f"; done
# if it is run on ubuntu-latest, python 3.9, then create the badge
- name: Pytest coverage comment
if: ${{ (matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9') && (github.actor != 'dependabot[bot]' || github.actor != 'pre-commit-ci[bot]' || github.event_name != 'push') }}
id: coverage-comment
uses: MishaKav/pytest-coverage-comment@v1.1.43
with:
pytest-coverage-path: ./pytest-coverage.txt
- name: Check the output coverage
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' }}
shell: bash
run: |
echo "Coverage Report - ${{ steps.coverage-comment.outputs.coverage }}"
echo "Coverage Color - ${{ steps.coverage-comment.outputs.color }}"