Skip to content

Commit

Permalink
chore: The pact-jvm-server main spec was not configured correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Dec 3, 2024
1 parent 147a2a6 commit 19c663c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pact-jvm-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ java {
}

test {
dependsOn(':pact-jvm-server:assembleDist')
dependsOn(':pact-jvm-server:installDist')
systemProperty('appExecutable', (new File(buildDir, 'install/pact-jvm-server/bin/pact-jvm-server')).path)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ import groovy.json.JsonSlurper
import org.apache.hc.client5.http.fluent.Request
import org.apache.hc.core5.http.ContentType
import org.apache.hc.core5.http.HttpResponse
import spock.lang.IgnoreIf
import spock.lang.Specification

import java.util.concurrent.TimeUnit

@IgnoreIf({ os.windows })
@IgnoreIf({ System.getenv('CI') != null })
class MainSpec extends Specification {
def 'application command line args'() {
when:
Expand Down

0 comments on commit 19c663c

Please sign in to comment.