Skip to content

MAK-Relic-Tool/Issue-Tracker#39 Hotfix #13

MAK-Relic-Tool/Issue-Tracker#39 Hotfix

MAK-Relic-Tool/Issue-Tracker#39 Hotfix #13

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Pytest
on:
push:
branches: [ main ]
paths:
- 'src/**'
- 'tests/**'
- '.github/workflows/pytest.yml'
- 'setup.cfg'
- 'MANIFEST.in'
pull_request:
branches: [ main ]
paths:
- 'src/**'
- 'tests/**'
- '.github/workflows/pytest.yml'
- 'setup.cfg'
- 'MANIFEST.in'
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10"]
name: PyTest ${{ matrix.python-version }}
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 dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python -m pip install wheel setuptools
python -m pip install pytest
- name: Build & Install Package
run: |
python -m pip install .
- name: Test with pytest
run: |
pytest -v