Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 27 additions & 6 deletions .github/workflows/contract-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,34 @@ jobs:
python-version: ["3.8", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.75.0
with:
components: rustfmt
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Build Rust control-plane CLI
run: cargo build --locked
- name: Run framework and native-solver boundary tests
run: |
python -m unittest discover -s tests -p 'test_contracts.py' -v
python -m unittest discover -s tests -p 'test_provenance.py' -v
python -m unittest discover -s tests -p 'test_native_solver_import_model.py' -v
python -m unittest discover -s tests -p 'test_swe_outcomes.py' -v
python -m unittest discover -s tests -p 'test_swe_provenance.py' -v
run: python -m unittest discover -s tests -p 'test_*.py' -v

control-plane:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.75.0
with:
components: rustfmt
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Check Rust formatting
run: cargo fmt --all --check
- name: Run Rust unit tests
run: cargo test --locked
- name: Run shell CLI and lifecycle contracts
run: tests/run.sh
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.multiagent/
target/
.DS_Store
__pycache__/
*.pyc
Expand Down
Loading
Loading