File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/integTest/groovy/com/lookout/jruby Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
package com.lookout.jruby
2
2
3
+ import org.gradle.api.artifacts.Configuration
3
4
import org.gradle.api.artifacts.repositories.ArtifactRepository
4
5
import org.gradle.testfixtures.ProjectBuilder
5
6
import spock.lang.FailsWith
@@ -14,9 +15,10 @@ import static org.gradle.api.logging.LogLevel.LIFECYCLE
14
15
/**
15
16
* @author Schalk W. Cronjé
16
17
*/
17
- @Stepwise
18
18
class JRubyExecExtensionIntegrationSpec extends Specification {
19
- static final boolean TESTS_ARE_OFFLINE = System . getProperty(' TESTS_ARE_OFFLINE' ) != null
19
+
20
+ static final boolean TESTS_ARE_OFFLINE = true
21
+ // static final boolean TESTS_ARE_OFFLINE = System.getProperty('TESTS_ARE_OFFLINE') != null
20
22
static final File TEST_SCRIPT_DIR = new File ( System . getProperty(' TEST_SCRIPT_DIR' ) ?: ' src/integTest/resources/scripts' )
21
23
static final File TESTROOT = new File (" ${ System.getProperty('TESTROOT') ?: 'build/tmp/test/integration-tests'} /jreeis" )
22
24
@@ -37,7 +39,6 @@ class JRubyExecExtensionIntegrationSpec extends Specification {
37
39
}
38
40
39
41
40
- @IgnoreRest
41
42
@IgnoreIf ({TESTS_ARE_OFFLINE })
42
43
def " Run a script with minimum parameters" () {
43
44
given :
You can’t perform that action at this time.
0 commit comments