Skip to content

test: fix dead variable and annotation in test_ccc_data_root_env_var #18

test: fix dead variable and annotation in test_ccc_data_root_env_var

test: fix dead variable and annotation in test_ccc_data_root_env_var #18

Workflow file for this run

name: CareCenter tests
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
tests:
name: Python ${{ matrix.python-version }}
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
python -m pip install --upgrade pip
python -m pip install "git+https://github.com/dev-bricks/safe-start-for-codex.git@main"
python -m pip install -e ".[dev]"
- name: Compile sources
run: python -m compileall -q src tests
- name: Run tests
run: python -m pytest -q