Skip to content

Merge pull request #43 from serengil/feat-task-split-unit-tests #20

Merge pull request #43 from serengil/feat-task-split-unit-tests

Merge pull request #43 from serengil/feat-task-split-unit-tests #20

Workflow file for this run

name: Tests and Linting
on:
push:
paths:
- '.github/workflows/tests.yml'
- 'chefboost/**'
- 'tests/**'
- 'requirements.txt'
- '.gitignore'
- 'setup.py'
pull_request:
paths:
- '.github/workflows/tests.yml'
- 'chefboost/**'
- 'tests/**'
- 'requirements.txt'
- '.gitignore'
- 'setup.py'
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .
- name: Test with pytest
run: |
cd tests
python -m pytest . -s --disable-warnings
linting:
needs: unit-tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install black
pip install .
- name: Lint with pylint
run: |
python -m pylint chefboost/ --fail-under=10