Skip to content

Connect attention states (#123) #234

Connect attention states (#123)

Connect attention states (#123) #234

Workflow file for this run

name: Prusa error codes
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install coverage
pip install pyyaml
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with pylint
run: |
python3 -m pylint --version
python3 -m pylint --persistent=n --jobs 0 --max-line-length=120 prusaerrors
- name: Test
run: |
export PATH="${PATH}:$(pwd)"
coverage run -m unittest discover --failfast --verbose tests
coverage report