Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test fixes #9

Merged
merged 31 commits into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4cf5ea0
change all workflows to manual dispatch
kent-3 Aug 3, 2024
bac89a9
make workflow run on this branch
kent-3 Aug 3, 2024
9dab1b6
try sccache and build
kent-3 Aug 3, 2024
1e676fc
set working directory
kent-3 Aug 3, 2024
cac4617
add tests test
kent-3 Aug 3, 2024
c4cfc38
delete old rust install action
kent-3 Aug 3, 2024
8fcb122
only run cargo test with default features
kent-3 Aug 3, 2024
08c2659
get tests to compile
kent-3 Aug 3, 2024
9cf6d8d
add integrations test
kent-3 Aug 3, 2024
66c7726
disable test backtraces feature
kent-3 Aug 29, 2024
7b1a47b
delete irrelevant tests
kent-3 Aug 29, 2024
ed0d73e
deduplicate unit tests
kent-3 Aug 29, 2024
a242ab6
re-enable some more tests
kent-3 Aug 29, 2024
28525c1
ignore mock tests
kent-3 Aug 29, 2024
1ee54d6
misc
kent-3 Aug 29, 2024
f85ac65
install wasm32 target
kent-3 Aug 29, 2024
59d7cee
install latest version of Binaryen
kent-3 Aug 29, 2024
6720477
integration test fixes
kent-3 Aug 29, 2024
c08c147
ignore some parts of the test for now
kent-3 Aug 29, 2024
7078cce
test fixes
kent-3 Aug 29, 2024
3b058b2
misc workflow updates
kent-3 Aug 29, 2024
5dd1e3c
try fix payload hashing
kent-3 Aug 30, 2024
40aa58a
run tests on PRs
kent-3 Aug 31, 2024
4bea5b3
almost
kent-3 Aug 31, 2024
826e807
Rust unit-test ecdsa recover fix
SecretSaturn Sep 10, 2024
4cb2268
Fix solidity tests
SecretSaturn Sep 10, 2024
713d44a
Merge branch 'main' into test-fixes
SecretSaturn Sep 10, 2024
e5ac54e
Add gas snapshot for foundry test
SecretSaturn Sep 10, 2024
f00fa7b
Update Foundry_tests.yml
SecretSaturn Sep 10, 2024
e644844
Update Foundry_tests.yml 2
SecretSaturn Sep 10, 2024
ff78260
clean
SecretSaturn Sep 10, 2024
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
11 changes: 0 additions & 11 deletions .github/actions/install-rust/NOTICE

This file was deleted.

19 changes: 0 additions & 19 deletions .github/actions/install-rust/README.md

This file was deleted.

12 changes: 0 additions & 12 deletions .github/actions/install-rust/action.yml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/actions/install-rust/main.js

This file was deleted.

110 changes: 0 additions & 110 deletions .github/workflows/Deploy.yml

This file was deleted.

51 changes: 0 additions & 51 deletions .github/workflows/EthDeploy.yml

This file was deleted.

20 changes: 16 additions & 4 deletions .github/workflows/Foundry_tests.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
name: Foundry Tests

on:
workflow_dispatch:
push:
branches:
- main
paths:
- "TNLS-Gateways/public-gateway/**"
- ".github/workflows/Foundry_tests.yml"
pull_request:
branches:
- main
paths:
- 'public-gateway/**'
- "TNLS-Gateways/public-gateway/**"
- ".github/workflows/Foundry_tests.yml"

jobs:
tests:
Expand All @@ -19,12 +30,13 @@ jobs:
version: nightly

- name: Install forge dependencies
working-directory: ./public-gateway
working-directory: TNLS-Gateways/public-gateway
run: forge install

- name: Run tests
working-directory: ./public-gateway
working-directory: TNLS-Gateways/public-gateway
run: forge test -vvv

- name: Check gas snapshots
run: forge snapshot --check
working-directory: TNLS-Gateways/public-gateway
run: forge snapshot --check --tolerance 1
66 changes: 0 additions & 66 deletions .github/workflows/Python_tests.yml

This file was deleted.

Loading
Loading