Skip to content

Coverage test

Coverage test #321

Workflow file for this run

name: run unit tests
on:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.7,3.8]
steps:
- uses: actions/checkout@v2
- 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 -r requirements.txt
pip install pytest-cov
pip install --no-cache-dir -e .[test]
- name: Run unit tests
run: pytest --cov=mindsdb_sql --cov-report lcov:cov.info tests/
shell: bash
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.G_TOKEN}}
format: lcov
files: cov.info
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.G_TOKEN }}
parallel-finished: true