Skip to content

test: add vnutil instant-effect duration unit tests and CI workflow #1

test: add vnutil instant-effect duration unit tests and CI workflow

test: add vnutil instant-effect duration unit tests and CI workflow #1

Workflow file for this run

name: "Unit tests"
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.14"
- name: Install package
run: pip install -e .
- name: Install pytest
run: pip install pytest
- name: Run unit tests
run: pytest tests/ -v --tb=short