Skip to content

[pre-commit.ci] auto fixes from pre-commit.com hooks #171

[pre-commit.ci] auto fixes from pre-commit.com hooks

[pre-commit.ci] auto fixes from pre-commit.com hooks #171

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
test-minimal-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pipx install poetry
- name: Update setuptools
run: python -m pip install --upgrade pip setuptools
- name: Install poetry dependencies
run: |
poetry install -E dev
- name: Setup git
run: |
git config --global user.name "CoLRev update"
git config --global user.email "[email protected]"
git config --global url.https://github.com/.insteadOf git://github.com/
- name: Run poetry tests (minimal-deps)
run: poetry run pytest tests/0_core/ -vv
test-full-deps:
needs: test-minimal-deps
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pipx install poetry
- name: Install poetry dependencies
run: |
poetry install -E dev || echo "No dev extra"
- name: Setup git
run: |
git config --global user.name "CoLRev update"
git config --global user.email "[email protected]"
git config --global url.https://github.com/.insteadOf git://github.com/
- name: Run poetry tests
run: poetry run pytest --slow -vv
test-pip-install:
needs: test-minimal-deps
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install via pip
run: |
pip install -e .[dev]
- name: Setup git
run: |
git config --global user.name "CoLRev update"
git config --global user.email "[email protected]"
git config --global url.https://github.com/.insteadOf git://github.com/
- name: Run tests
run: pytest tests --slow -vv