Skip to content

Fix: ignore-init setting is not working from command line call #263 #1372

Fix: ignore-init setting is not working from command line call #263

Fix: ignore-init setting is not working from command line call #263 #1372

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test_with_python36:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-latest, windows-latest]
python-version: ["3.6"]
steps:
- uses: actions/checkout@v2.3.4
- name: Set up Python${{ matrix.python-version }}
uses: actions/setup-python@v2.1.4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Dependencies for Python${{ matrix.python-version }}
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Test with pytest for Python${{ matrix.python-version }}
run: |
tox -e ${{ matrix.python-version }}
test_other_python:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2.3.4
- name: Set up Python${{ matrix.python-version }}
uses: actions/setup-python@v2.1.4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Dependencies for Python${{ matrix.python-version }}
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Test with pytest for Python${{ matrix.python-version }}
run: |
tox -e ${{ matrix.python-version }}
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- name: Set up Python${{ matrix.python-version }}
uses: actions/setup-python@v2.1.4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[test]
- name: Generate coverage report
run: |
python -m pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1.0.14
with:
token: ${{secrets.CODECOV_TOKEN }}