Changeset 9815 in josm for trunk


Ignore:
Timestamp:
2016-02-17T19:44:36+01:00 (8 years ago)
Author:
Don-vip
Message:

see #12514, see #12533 - fix/ignore longstanding problems in unit tests

Location:
trunk/test/unit/org/openstreetmap/josm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/plugins/PluginHandlerTestIT.java

    r9666 r9815  
    5454        assertFalse(info.getClass().getName().isEmpty());
    5555
    56         // Filter deprecated and unmaintained ones
    57         List<String> uncooperatingPlugins = Arrays.asList("ebdirigo");
     56        // Filter deprecated and unmaintained ones, or those not responsive enough to match our continuous integration needs
     57        List<String> uncooperatingPlugins = Arrays.asList("ebdirigo", "scoutsigns");
    5858        Set<String> deprecatedPlugins = PluginHandler.getDeprecatedAndUnmaintainedPlugins();
    5959        for (Iterator<PluginInformation> it = plugins.iterator(); it.hasNext();) {
  • trunk/test/unit/org/openstreetmap/josm/tools/OverpassTurboQueryWizardTest.java

    r9704 r9815  
    55
    66import org.junit.BeforeClass;
     7import org.junit.Ignore;
    78import org.junit.Test;
    89import org.openstreetmap.josm.JOSMFixture;
     
    2627     */
    2728    @Test
     29    @Ignore("see #12514 - Test does not work with Java 7, to enable after Java 8 migration if not fixed in the meantime")
    2830    public void testKeyValue() {
    2931        final String query = OverpassTurboQueryWizard.getInstance().constructQuery("amenity=drinking_water");
Note: See TracChangeset for help on using the changeset viewer.