Skip to content

Commit 9bd9b88

Browse files
committed
Temporarily disable JRubyExecExtensionIntegrationSpec integration tests
1 parent 2b15677 commit 9bd9b88

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/integTest/groovy/com/lookout/jruby/JRubyExecExtensionIntegrationSpec.groovy

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package com.lookout.jruby
22

3+
import org.gradle.api.artifacts.Configuration
34
import org.gradle.api.artifacts.repositories.ArtifactRepository
45
import org.gradle.testfixtures.ProjectBuilder
56
import spock.lang.FailsWith
@@ -14,9 +15,10 @@ import static org.gradle.api.logging.LogLevel.LIFECYCLE
1415
/**
1516
* @author Schalk W. Cronjé
1617
*/
17-
@Stepwise
1818
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
2022
static final File TEST_SCRIPT_DIR = new File( System.getProperty('TEST_SCRIPT_DIR') ?: 'src/integTest/resources/scripts')
2123
static final File TESTROOT = new File("${System.getProperty('TESTROOT') ?: 'build/tmp/test/integration-tests'}/jreeis")
2224

@@ -37,7 +39,6 @@ class JRubyExecExtensionIntegrationSpec extends Specification {
3739
}
3840

3941

40-
@IgnoreRest
4142
@IgnoreIf({TESTS_ARE_OFFLINE})
4243
def "Run a script with minimum parameters"() {
4344
given:

0 commit comments

Comments
 (0)