Skip to content

Commit

Permalink
fix: contract unit tests (#904)
Browse files Browse the repository at this point in the history
* Fix contract testing

* Added chain-signatures unit testing into unit.yml

* lower function arg bytes to 1.5mb
  • Loading branch information
ChaoticTempest authored Oct 28, 2024
1 parent a8fa2aa commit c5eb72a
Show file tree
Hide file tree
Showing 4 changed files with 647 additions and 658 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ jobs:
( cd test-oidc-provider ; cargo fmt -- --check )
( cd integration-tests/chain-signatures ; cargo fmt -- --check )
( cd integration-tests/fastauth ; cargo fmt -- --check )
- name: Unit tests
run: ( cd mpc-recovery && cargo test )
- name: Test clippy
run: |
( cd chain-signatures ; cargo clippy --tests -- -Dclippy::all )
Expand All @@ -71,6 +69,12 @@ jobs:
( cd test-oidc-provider ; cargo clippy --tests -- -Dclippy::all )
( cd integration-tests/chain-signatures ; cargo clippy --tests -- -Dclippy::all )
( cd integration-tests/fastauth ; cargo clippy --tests -- -Dclippy::all )
- name: Unit tests (FastAuth)
working-directory: mpc-recovery
run: cargo test
- name: Unit tests (Chain Signatures)
working-directory: chain-signatures
run: cargo test

audit:
name: Audit
Expand Down
Loading

0 comments on commit c5eb72a

Please sign in to comment.