Skip to content

Updates 2024-08-28 - ... #12

Updates 2024-08-28 - ...

Updates 2024-08-28 - ... #12

name: Herding Cats Unit Tests
on:
push:
branches:
- main
paths:
- "src/**"
- "tests/**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest requests loguru pandas polars
- name: Create pytest.ini
run: |
echo "[pytest]" > pytest.ini
echo "pythonpath = ." >> pytest.ini
echo "addopts = -v" >> pytest.ini
- name: Run tests
run: pytest tests/