Skip to content

fix: make telemetry adapter deterministic (no time.time fallback) #124

fix: make telemetry adapter deterministic (no time.time fallback)

fix: make telemetry adapter deterministic (no time.time fallback) #124

Workflow file for this run

name: ADN Tests (v3)
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install project (editable)
run: |
pip install -e .
- name: Install test dependencies
run: |
pip install pytest
- name: Run test suite
run: |
pytest -q