Skip to content

Update README.md

Update README.md #23

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Coding Library Test
on:
push:
branches:
- "main"
- "pytest"
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
sudo apt install build-essential libdbus-glib-1-dev libgirepository1.0-dev
python -m pip install --upgrade pip
pip install pytest pytest-cov xvfbwrapper
pip install .
- name: Test with pytest
run: |
pytest -rA -vv -W ignore::DeprecationWarning --cov=jefapato --cov-report term-missing tests/test_blinking.py tests/test_earfeature.py