Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
test: add snekmate to external tests
  • Loading branch information
DaniPopes committed Nov 10, 2023
commit 39e2c138b1698c59aec9f822b4f20b094ef0010d
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ jobs:
with:
target: ${{ matrix.target }}
- uses: taiki-e/install-action@nextest
# - uses: taiki-e/setup-cross-toolchain-action@v1
# with:
# target: ${{ matrix.target }}
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- run: pip install vyper
- name: Forge RPC cache
uses: actions/cache@v3
with:
Expand All @@ -61,7 +62,6 @@ jobs:
key: rpc-cache-${{ hashFiles('crates/forge/tests/rpc-cache-keyfile') }}
- uses: Swatinem/rust-cache@v2
with:
# key: ${{ matrix.target }}
cache-on-failure: true
- name: Setup Git config
run: |
Expand Down
1 change: 1 addition & 0 deletions crates/forge/tests/cli/ext_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ forgetest_external!(
forgetest_external!(stringutils, "Arachnid/solidity-stringutils");
forgetest_external!(lootloose, "gakonst/lootloose");
forgetest_external!(lil_web3, "m1guelpf/lil-web3");
forgetest_external!(snekmate, "pcaversaccio/snekmate");

// Forking tests

Expand Down
2 changes: 1 addition & 1 deletion crates/test-utils/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ pub fn clone_remote(
"1",
"--recursive",
repo_url,
target_dir.as_ref().to_str().expect("Target path for git clone does not exist"),
target_dir.as_ref().to_str().unwrap(),
])
.output()
}
Expand Down