Merge pull request #1086 from Skgland/pass_-f_flag_in_cargo_test

pass -f to scryer-prolog in cargo test so that we ignore .scryerrc
This commit is contained in:
Mark Thom
2021-11-13 00:03:38 -05:00
committed by GitHub

View File

@@ -77,6 +77,7 @@ pub fn run_top_level_test_with_args<
) { ) {
Command::cargo_bin(SCRYER_PROLOG) Command::cargo_bin(SCRYER_PROLOG)
.unwrap() .unwrap()
.arg("-f")
.args(args) .args(args)
.write_stdin(stdin) .write_stdin(stdin)
.assert() .assert()