Skip to content

Commit

Permalink
revert: more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jmatsu committed Oct 16, 2024
1 parent 6939ecc commit 16859af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ project.tasks.withType(Test).configureEach {
exceptionFormat "full"
}

println("TEST_SERVER_URL: ${System.getenv("TEST_SERVER_URL")}")
println("TEST_SERVER_URL(上書き): ${System.getenv("TEST_SERVER_URL") ?: "http://localhost:3000"}")
println("${project.name}:${name} / TEST_SERVER_URL: ${System.getenv("TEST_SERVER_URL")}")
println("${project.name}:${name} / TEST_SERVER_URL(上書き): ${System.getenv("TEST_SERVER_URL") ?: "http://localhost:3000"}")

environment([
"ANDROID_HOME": System.getenv("ANDROID_HOME"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ApiClientSpec extends Specification {

def endpoint = System.getenv("TEST_SERVER_URL")

println("endpoint: $endpoint")
throw new AssertionError("endpoint is $endpoint")

def client = new HttpClient(endpoint) {
private final Property<String> nkProp = project.objects.property(String)
Expand Down

0 comments on commit 16859af

Please sign in to comment.