Skip to content

Colocate tests w/ objects tested; switch from unittest to pytest #194

Colocate tests w/ objects tested; switch from unittest to pytest

Colocate tests w/ objects tested; switch from unittest to pytest #194

Workflow file for this run

name: "Testing"
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python all python version
uses: actions/setup-python@v4
with:
python-version: 3.11
architecture: x64
- name: Install dependencies
run: |
python -m venv --upgrade-deps .venv
source .venv/bin/activate
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run Test
run: |
source .venv/bin/activate
python -m pytest .