]> source.dussan.org Git - sonarqube.git/commitdiff
Disable css plugin as it's currently incompatible with web plugin
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Wed, 7 Dec 2016 09:45:32 +0000 (10:45 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 8 Dec 2016 16:34:29 +0000 (17:34 +0100)
it/it-tests/src/test/java/it/plugins/PluginsTest.java

index 32df01c730c2eaacf00d9fecdee8ae194912d55b..f0fdbb1f244a9c3275cc2d5f330038425caec820 100644 (file)
@@ -29,7 +29,6 @@ import it.plugins.checks.CCheck;
 import it.plugins.checks.Check;
 import it.plugins.checks.CobolCheck;
 import it.plugins.checks.CppCheck;
-import it.plugins.checks.CssCheck;
 import it.plugins.checks.FlexCheck;
 import it.plugins.checks.GroovyCheck;
 import it.plugins.checks.JavaCheck;
@@ -65,6 +64,9 @@ public class PluginsTest {
    * Temporarily disabled plugins. To be re-enabled.
    */
   static final Set<String> DISABLED_PLUGINS = Sets.newHashSet(
+    // FIXME css plugin is temporary disabled as for the moment incompatible with the web plugin
+    "css",
+
     // internal plugin used for integration tests of language plugins
     "lits",
 
@@ -84,7 +86,8 @@ public class PluginsTest {
     new AbapCheck(),
     new CCheck(), new CppCheck(),
     new CobolCheck(),
-    new CssCheck(),
+    // FIXME css plugin is temporary disabled as for the moment incompatible with the web plugin
+//    new CssCheck(),
     new FlexCheck(),
     new GroovyCheck(),
     new JavaCheck(),