You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by du...@apache.org on 2018/01/30 06:03:04 UTC

[incubator-openwhisk-cli] branch master updated: Prevent execution of 'incubator-openwhisk' tests when './gradlew test' is run (#215)

This is an automated email from the ASF dual-hosted git repository.

dubeejw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-cli.git


The following commit(s) were added to refs/heads/master by this push:
     new 12063b2  Prevent execution of 'incubator-openwhisk' tests when './gradlew test' is run (#215)
12063b2 is described below

commit 12063b2c1cab51286f8f78fb118574866e200d3f
Author: Jonathan Springer <jo...@gmail.com>
AuthorDate: Tue Jan 30 01:03:02 2018 -0500

    Prevent execution of 'incubator-openwhisk' tests when './gradlew test' is run (#215)
    
    * First stages of test transition
---
 .gitignore         | 2 +-
 tests/build.gradle | 8 ++++++++
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index c1d724d..de76850 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,6 +11,6 @@ Godeps/_workspace
 # Gradle build working directories
 /.gradle/
 /.gogradle/
-/build/
+build
 /release/
 /vendor/
diff --git a/tests/build.gradle b/tests/build.gradle
index c11a0f9..ec54e0f 100644
--- a/tests/build.gradle
+++ b/tests/build.gradle
@@ -3,6 +3,10 @@ apply plugin: 'eclipse'
 compileTestScala.options.encoding = 'UTF-8'
 
 evaluationDependsOn(':clitests')
+evaluationDependsOn(':common:scala')
+
+project(':clitests').test.onlyIf = {false}
+compileTestScala.dependsOn(':clitests:compileTestScala')
 
 repositories {
     mavenCentral()
@@ -27,6 +31,10 @@ dependencies {
     compile "org.scala-lang:scala-library:${gradle.scala.version}"
     compile project(':clitests')
     compile project(':clitests').sourceSets.test.output
+
+    compile project(':common:scala')
+    compile project(':core:controller')
+    compile project(':core:invoker')
 }
 
 tasks.withType(ScalaCompile) {

-- 
To stop receiving notification emails like this one, please contact
dubeejw@apache.org.