From: Skgland Date: Thu, 11 Nov 2021 10:36:54 +0000 (+0100) Subject: pass -f to scryer-prolog in cargo test so that we ignore .scryerrc X-Git-Tag: v0.9.0~31^2 X-Git-Url: https://git.sagredo.dev/?a=commitdiff_plain;h=e7899ee15eb21a5cbd8be72da55b358204bc63dd;p=scryer-prolog.git pass -f to scryer-prolog in cargo test so that we ignore .scryerrc fixes issue #1085 --- diff --git a/tests/scryer/helper.rs b/tests/scryer/helper.rs index 84d59cb5..baa057d0 100644 --- a/tests/scryer/helper.rs +++ b/tests/scryer/helper.rs @@ -77,6 +77,7 @@ pub fn run_top_level_test_with_args< ) { Command::cargo_bin(SCRYER_PROLOG) .unwrap() + .arg("-f") .args(args) .write_stdin(stdin) .assert()