-
Notifications
You must be signed in to change notification settings - Fork 16
38 lines (36 loc) · 1.11 KB
/
Copy pathdecisive.yml
File metadata and controls
38 lines (36 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: decisive-evidence
on:
pull_request:
push:
branches: [main]
jobs:
decisive:
runs-on: macos-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
python -m pip install pytest numpy
- name: Run decisive evidence subset
run: |
python -m pytest \
tests/test_adversarial_statistics.py \
tests/test_hardware_resource_baselines.py \
tests/test_id_rag_black_box.py \
tests/test_ontological_boundary_guard.py \
tests/test_phi_reference_validation.py \
-q
bash scripts/run_decisive_test.sh
- name: Upload decisive results
uses: actions/upload-artifact@v4
with:
name: decisive-results
path: |
tests/DECISIVE_RESULTS.json
tests/SCALE_SWEEP_RESULTS.json