Skip to content

updated tui.png asset #65

updated tui.png asset

updated tui.png asset #65

Workflow file for this run

name: Run Tests
permissions:
contents: read
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
workflow_dispatch: # Allows manual triggering
jobs:
test:
name: Test on Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Matching versions from your python-publish.yml
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-asyncio pytest-cov # Explicitly install test dependencies
- name: Run Tests with Coverage
# Using the same command that worked locally for you
run: |
pytest --cov=graybox tests/