Skip to content

Commit

Permalink
ignore test that depends on deleted artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
AttwellBrian committed Nov 5, 2017
1 parent f7dcfa5 commit 991e76c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion android/gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def test = [
mockito: "org.mockito:mockito-core:2.0.42-beta",
assertj: "org.assertj:assertj-core:2.6.0",
compileTesting: "com.google.testing.compile:compile-testing:0.11",
tools: "com.sun:tools:1.8.0-112",
]

def external = [
Expand Down
1 change: 0 additions & 1 deletion android/libraries/rib-compiler-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ dependencies {
compileOnly deps.apt.androidApi

testCompile deps.test.compileTesting
testCompile deps.test.tools
}

// https://code.google.com/p/android/issues/detail?id=64887
Expand Down
1 change: 0 additions & 1 deletion android/libraries/rib-compiler-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ dependencies {

testCompile deps.support.annotations
testCompile deps.test.compileTesting
testCompile deps.test.tools
}

// https://code.google.com/p/android/issues/detail?id=64887
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/
package com.uber.rib.compiler;

import org.junit.Ignore;
import org.junit.Test;

import javax.tools.JavaFileObject;
Expand All @@ -24,6 +25,7 @@

public class InteractorTestGeneratorTest extends InteractorTestGeneratorProcessorTestBase {

@Ignore("The maven coordinate com.sun:tools no longer appears to work. So this test won't pass.")
@Test
public void processor_withAnInteractor_shouldCreateANewScopeAnnotation() {
JavaFileObject expectedTestCreator = getResourceFile("fixtures/TestAnnotatedInteractor.java");
Expand Down

0 comments on commit 991e76c

Please sign in to comment.