-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (47 loc) · 1.56 KB
/
Copy pathtest.yml
File metadata and controls
49 lines (47 loc) · 1.56 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
39
40
41
42
43
44
45
46
47
48
49
name: test
on:
push:
pull_request:
jobs:
smoke:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: python -m pip install --no-deps .
- name: Compile scripts
run: python -m py_compile src/clean_your_data/*.py audit-local-files/scripts/*.py
- name: Run packaged CLI test
run: python tests/package_test.py
- name: Build and exercise wheel
run: python tests/install_test.py
- name: Run smoke test
run: python tests/smoke_test.py
- name: Run contract test
run: python tests/contract_test.py
- name: Run duplicate detection test
run: python tests/duplicate_test.py
- name: Run interactive map test
run: python tests/interactive_test.py
- name: Run terminal UI test
run: python tests/tui_test.py
- name: Run local GUI test
run: python tests/gui_test.py
- name: Run Agent trace test
run: python tests/trace_test.py
- name: Run path explanation test
run: python tests/why_test.py
- name: Run Agent Skill contract test
run: python tests/skill_test.py
- name: Run cleanup loop test
run: python tests/cleanup_test.py
- name: Run workspace actions test
run: python tests/workspace_test.py
- name: Run advanced browsing test
run: python tests/browse_test.py