You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tephra.apache.org by an...@apache.org on 2018/03/27 01:17:28 UTC

incubator-tephra git commit: (TEPHRA-285) Exclude failing test from Travis build until fix is available in HBase

Repository: incubator-tephra
Updated Branches:
  refs/heads/master ee28569d3 -> 305b0a1ff


(TEPHRA-285) Exclude failing test from Travis build until fix is available in HBase

This closes #71 from Github.

Signed-off-by: anew <an...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/incubator-tephra/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tephra/commit/305b0a1f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tephra/tree/305b0a1f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tephra/diff/305b0a1f

Branch: refs/heads/master
Commit: 305b0a1ff1d17791378c1a902f6f60eda74d601e
Parents: ee28569
Author: anew <an...@apache.org>
Authored: Fri Mar 23 14:17:02 2018 -0700
Committer: anew <an...@apache.org>
Committed: Mon Mar 26 18:17:03 2018 -0700

----------------------------------------------------------------------
 .travis.yml | 7 +++++++
 pom.xml     | 1 +
 2 files changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tephra/blob/305b0a1f/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index f5a06b8..0daa591 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -39,10 +39,17 @@ env:
  - OPTIONS='-am -DskipCoreTests -pl tephra-hbase-compat-1.4,tephra-examples/hbase-1.4'
  - OPTIONS='-am -DskipCoreTests -pl tephra-hbase-compat-2.0,tephra-examples/hbase-2.0'
 
+# exclude hbase-2.0 for jdk7;
+# exclude hbase-1.4 for jdk7; then include it with an extra excluded test to work around TEPHRA-285
 matrix:
   exclude:
   - jdk: oraclejdk7
     env: OPTIONS='-am -DskipCoreTests -pl tephra-hbase-compat-2.0,tephra-examples/hbase-2.0'
+  - jdk: oraclejdk7
+    env: OPTIONS='-am -DskipCoreTests -pl tephra-hbase-compat-1.4,tephra-examples/hbase-1.4'
+  include:
+  - jdk: oraclejdk7
+    env: OPTIONS='-am -DskipCoreTests -DtestExcludes=org/apache/tephra/hbase/coprocessor/TransactionProcessorTest.java -pl tephra-hbase-compat-1.4,tephra-examples/hbase-1.4'
 
 branches:
   only:

http://git-wip-us.apache.org/repos/asf/incubator-tephra/blob/305b0a1f/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0975b92..98834a1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -418,6 +418,7 @@
             </includes>
             <excludes>
               <exclude>**/*TestRun.java</exclude>
+              <exclude>${testExcludes}</exclude>
             </excludes>
           </configuration>
         </plugin>