Skip to content

Merge pull request #22 from INTI-CMNB/add_exclude_from_bom #110

Merge pull request #22 from INTI-CMNB/add_exclude_from_bom

Merge pull request #22 from INTI-CMNB/add_exclude_from_bom #110

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python 3
on:
push:
paths:
- '**.py'
- 'tests/**'
- '.github/workflows/pythonapp.yml'
pull_request:
paths:
- '**.py'
- 'tests/**'
- '.github/workflows/pythonapp.yml'
jobs:
test:
runs-on: ubuntu-latest
container: setsoft/kicad_auto_test:latest
steps:
- uses: actions/checkout@v2
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings.
flake8 . --count --exit-zero --statistics
- name: Test with pytest
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
python3-coverage erase
pytest-3 --test_dir output
python3-coverage report
python3-coverage html -d output/htmlcov
coveralls
- name: Store results
if: ${{ always() }}
uses: actions/upload-artifact@v1
with:
name: Test_Output
path: output