summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Wiesner <sebastian@swsnr.de>2018-12-13 11:23:53 +0100
committerSebastian Wiesner <sebastian@swsnr.de>2018-12-13 11:23:53 +0100
commit7adc6e68626116b81c18c913a87b4d96376501b5 (patch)
treea5dc83f3ec539a68550ae4ad68b269e7c8a0e613
parentce447e805d73ea0006b886a7198ec25778836c86 (diff)
Completely disable formatting tests on Windows
-rw-r--r--tests/formatting.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/formatting.rs b/tests/formatting.rs
index cb1c669..937b26a 100644
--- a/tests/formatting.rs
+++ b/tests/formatting.rs
@@ -13,6 +13,10 @@
// limitations under the License.
#![deny(warnings, missing_docs, clippy::all)]
+// Currently we only run formatting tests on Unix, because we rely on a Python
+// tool here, and I failed to setup Python properly on Travis CI' Windows
+// workers.
+#![cfg(unix)]
use mdcat;
@@ -104,7 +108,6 @@ macro_rules! test_compare_html(
)
);
-#[cfg(unix)]
mod formatting {
mod html {
test_compare_html!(block_quote_and_ruler);