From c91511cca14655b40263361684df684310c05dc3 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sat, 2 Jun 2018 19:03:20 +0200 Subject: [PATCH] Always run snapshot test --- tests/tests.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tests/tests.rs b/tests/tests.rs index 2bf07906..0f14ae15 100644 --- a/tests/tests.rs +++ b/tests/tests.rs @@ -1,6 +1,5 @@ mod tester; -use std::process::{Command, Stdio}; use tester::BatTester; static STYLES: &'static [&'static str] = &[ @@ -25,17 +24,6 @@ static STYLES: &'static [&'static str] = &[ #[test] fn test_snapshots() { - let status = Command::new("git") - .arg("rev-parse") - .stdout(Stdio::null()) - .stderr(Stdio::null()) - .status(); - - if !status.map(|s| s.success()).unwrap_or(false) { - // Git not available or not a git repository. Skipping snapshot test. - return; - } - let bat_tester = BatTester::new(); for style in STYLES {