Skip to content

Commit

Permalink
reenable weaver test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jbwheatley committed Aug 17, 2022
1 parent f8a399a commit fac7c39
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,3 @@ jobs:
with:
java-version: temurin@17
- run: sbt commitCheck
env:
TEST_WEAVER: false
6 changes: 1 addition & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,7 @@ lazy val weaver =
.settings(
name := "pact4s-weaver",
libraryDependencies ++= Dependencies.weaver,
testFrameworks ++= {
if (Try(System.getenv("TEST_WEAVER").toBoolean).getOrElse(true))
Seq(new TestFramework("weaver.framework.CatsEffect"))
else Nil
}
testFrameworks += new TestFramework("weaver.framework.CatsEffect")
)
.dependsOn(shared % "compile->compile;test->test")
.dependsOn(circe % "test->test")
Expand Down

0 comments on commit fac7c39

Please sign in to comment.