Skip to content

Update test_smoke.py #20

Update test_smoke.py

Update test_smoke.py #20

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Cache pip
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
python -c "import sys,pytest,platform; print('Pytest',pytest.__version__,'on',platform.python_version());"
- name: Run tests (verbose)
run: |
python -m pytest -vv --maxfail=1 --disable-warnings