summaryrefslogtreecommitdiff
path: root/test_plugin/tests/integration_tests.rs
diff options
context:
space:
mode:
authorRy Dahl <ry@tinyclouds.org>2020-01-17 08:55:32 -0500
committerGitHub <noreply@github.com>2020-01-17 08:55:32 -0500
commitad6635fab50c523f5de92660956aa384ca76415d (patch)
tree6d2ff6f2e1689666578a9f2ed5722771828238a0 /test_plugin/tests/integration_tests.rs
parentfe5662058e0c7767e7b2724451f9d5a3f133ffbf (diff)
Fix warnings on windows build (#3697)
Diffstat (limited to 'test_plugin/tests/integration_tests.rs')
-rw-r--r--test_plugin/tests/integration_tests.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/test_plugin/tests/integration_tests.rs b/test_plugin/tests/integration_tests.rs
index cb76ef3ef..fa5141804 100644
--- a/test_plugin/tests/integration_tests.rs
+++ b/test_plugin/tests/integration_tests.rs
@@ -1,3 +1,6 @@
+// TODO(ry) Re-enable this test on windows. It is flaky for an unknown reason.
+#![cfg(not(windows))]
+
use deno::test_util::*;
use std::process::Command;
@@ -12,8 +15,6 @@ const BUILD_VARIANT: &str = "debug";
#[cfg(not(debug_assertions))]
const BUILD_VARIANT: &str = "release";
-// TODO(ry) Re-enable this test on windows. It is flaky for an unknown reason.
-#[cfg(not(windows))]
#[test]
fn basic() {
let mut build_plugin_base = Command::new("cargo");