Skip to content

Commit

Permalink
ci: rm celo integration test, install missing solc version (#2292)
Browse files Browse the repository at this point in the history
  • Loading branch information
gakonst committed Mar 21, 2023
1 parent 1936f0e commit 89b1b2d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 65 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -63,11 +63,11 @@ jobs:
- uses: Swatinem/rust-cache@v2
- name: test ${{ matrix.flags.flags }}
shell: bash
# skip `ethers_etherscan::it` and `ethers::live`
# skip `ethers_etherscan::it`
run: |
cargo nextest run \
${{ matrix.flags.flags }} \
-E "!binary(~live) & !(deps(ethers-etherscan) & kind(test))"
-E "!(deps(ethers-etherscan) & kind(test))"
etherscan-tests:
name: etherscan tests
Expand Down
60 changes: 0 additions & 60 deletions ethers/tests/celo.rs

This file was deleted.

1 change: 1 addition & 0 deletions ethers/tests/eip712.rs
Expand Up @@ -40,6 +40,7 @@ async fn test_derive_eip712() {

// get ABI and bytecode for the DeriveEip712Test contract
let path = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests");
Solc::find_or_install_svm_version("0.6.0").unwrap(); // install solc
let result = Solc::default().compile_source(path).unwrap();
let (abi, bytecode, _) = result
.find("DeriveEip712Test")
Expand Down
3 changes: 0 additions & 3 deletions ethers/tests/main.rs
@@ -1,7 +1,4 @@
//! Ethers integration tests.
#![cfg(not(target_arch = "wasm32"))]

#[cfg(feature = "celo")]
mod celo;

mod eip712;

0 comments on commit 89b1b2d

Please sign in to comment.