Skip to content

Commit

Permalink
dotenvy check
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWillard committed May 3, 2024
1 parent 4f1adcc commit 7fe378b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test-data-setup/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ fn main() {
return;
}

dotenvy::dotenv().expect("dotenvy failed");
if dotenvy::dotenv().is_err() {
println!(".env not found...");
}

println!("Extracting test data...");

Expand Down

0 comments on commit 7fe378b

Please sign in to comment.