Skip to content

tests: add test framework with mock and hardware support. #3

tests: add test framework with mock and hardware support.

tests: add test framework with mock and hardware support. #3

Workflow file for this run

name: "🧪 Mock Tests"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
mock-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: "⏳ Checkout repository"
uses: actions/checkout@v3
- name: "🐍 Set up Python"
uses: actions/setup-python@v4
with:
cache: "pip"
python-version: "3.10"
- name: "🛠 Install dependencies"
run: |
pip install pytest pyyaml
- name: "🧪 Run mock tests"
run: python -m pytest tests/ -v -k mock