Skip to content

Add CLI update tests (PR #450) #293

Add CLI update tests (PR #450)

Add CLI update tests (PR #450) #293

Workflow file for this run

name: Run CLI Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ "*" ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip and install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Run CLI Tests
run: |
python -m pytest -v tests/cli_tests.py