Skip to content

Commit b1b4cf6

Browse files
authored
Merge pull request #58 from Lay3rLabs/integration-test
ci
2 parents 29d45b1 + 2cf641e commit b1b4cf6

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/actions.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,12 @@ jobs:
3333
run: cargo clippy --all --all-features --tests -- -D warnings
3434

3535
- name: cargo test
36-
run: cargo test --all-features --lib
36+
run: cargo test --all-features --workspace
37+
env:
38+
RUST_BACKTRACE: 1
39+
RUST_LOG: info
40+
CLIMB_TEST_MNEMONIC: "session fatigue usage album plunge yard slice bicycle pig fly crack spin abandon dust misery minute orange lava raven sausage pill urge assault drop"
41+
LOCAL_FAUCET_MNEMONIC: "session fatigue usage album plunge yard slice bicycle pig fly crack spin abandon dust misery minute orange lava raven sausage pill urge assault drop"
3742

3843
pages_build:
3944
name: Build Pages

faucet/tests/helpers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ async fn fund_faucet(addr: &Address) {
128128
impl App {
129129
pub async fn new() -> Option<Self> {
130130
if let Err(e) = init().await {
131-
tracing::error!("Failed to initialize app: {}", e);
131+
tracing::warn!("skipping faucet test: {}", e);
132132
return None;
133133
}
134134

0 commit comments

Comments
 (0)