Skip to content

Commit 13f9218

Browse files
authored
Merge pull request #748 from yadavan88/live-tests
Ignore LiveTest from ciFull build
2 parents 2806a33 + 7017aa1 commit 13f9218

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ addCommandAlias(
493493

494494
addCommandAlias(
495495
"ciFull",
496-
""";ci; set ThisBuild/IntegrationTest/testOptions += Tests.Filter(t => !t.endsWith("ManualTest")); it:test""".stripMargin
496+
""";ci; set ThisBuild/IntegrationTest/testOptions += Tests.Filter(t => !t.endsWith("ManualTest") || !t.endsWith("LiveTest") ); it:test""".stripMargin
497497
)
498498
addCommandAlias(
499499
"manualTests",

scala-libraries-2/src/it/scala-2/com/baeldung/requests/RequestsScalaHttpClientLiveTest.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ import org.scalatest.Ignore
77

88
import java.io.{FileOutputStream, PrintWriter}
99

10-
// Temporarily ignoring this test due to timeout errors from httpbin.org. The APIs are timing out and hence test is failing
11-
@Ignore
1210
class RequestsScalaHttpClientLiveTest
1311
extends AnyWordSpec
1412
with BeforeAndAfterAll {

0 commit comments

Comments
 (0)