summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorsharkdp <davidpeter@web.de>2018-10-11 21:40:14 +0200
committerDavid Peter <sharkdp@users.noreply.github.com>2018-10-16 22:09:15 +0200
commit495e7fd3b1766c889f048a88c9702310f6d7c1a6 (patch)
tree23a91ec4900db121cfcdbd9d1c8ae4dde6a91def /tests
parentb48f0fe38991e54b5369a336a7aa5cbe8e7d72a6 (diff)
Add --no-config option
Diffstat (limited to 'tests')
-rw-r--r--tests/integration_tests.rs1
-rw-r--r--tests/tester.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs
index 58482386..be68d677 100644
--- a/tests/integration_tests.rs
+++ b/tests/integration_tests.rs
@@ -6,6 +6,7 @@ use std::process::Command;
fn bat() -> Command {
let mut cmd = Command::main_binary().unwrap();
cmd.current_dir("tests/examples");
+ cmd.arg("--no-config");
cmd
}
diff --git a/tests/tester.rs b/tests/tester.rs
index 859c6f12..7307e2f9 100644
--- a/tests/tester.rs
+++ b/tests/tester.rs
@@ -43,6 +43,7 @@ impl BatTester {
.current_dir(self.temp_dir.path())
.args(&[
"sample.rs",
+ "--no-config",
"--paging=never",
"--color=never",
"--decorations=always",