1
0
mirror of https://github.com/google/nomulus synced 2026-04-14 05:27:26 +00:00

Remove RdeUploadActionTest from FOSS tests

Remove from the FOSS test suite until we can figure out why it's timing out.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=165340539
This commit is contained in:
mmuller
2017-08-15 12:10:02 -07:00
committed by Ben McIlwain
parent f408833a72
commit 2a1cd6490b
2 changed files with 8 additions and 3 deletions

View File

@@ -9,7 +9,10 @@ load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
java_library(
name = "rde",
srcs = glob(["*.java"]),
srcs = glob(
["*.java"],
exclude = ["RdeUploadActionTest.java"],
),
resources = glob(["testdata/*"]),
deps = [
"//java/google/registry/config",
@@ -50,6 +53,9 @@ java_library(
GenTestRules(
name = "GeneratedTestRules",
default_test_size = "large",
test_files = glob(["*Test.java"]),
test_files = glob(
["*.java"],
exclude = ["RdeUploadActionTest.java"],
),
deps = [":rde"],
)

View File

@@ -26,7 +26,6 @@ import org.junit.runners.Suite.SuiteClasses;
GhostrydeTest.class,
HostResourceToXjcConverterTest.class,
RdeStagingActionTest.class,
RdeUploadActionTest.class,
RdeReportActionTest.class,
RegistrarToXjcConverterTest.class,
RydeGpgIntegrationTest.class,