Skip to content

Commit

Permalink
Merge pull request #1619 from tgodzik/ignore-hydra
Browse files Browse the repository at this point in the history
Ignore hydra tests
  • Loading branch information
tgodzik authored Dec 2, 2021
2 parents d1e85e0 + 8091da9 commit 95157db
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/src/test/scala/bloop/HydraCompileSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ object HydraCompileSpec extends BaseCompileSpec {
}

override def test(name: String)(fun: => Any): Unit = {
if (hydraLicenseExists) super.test(name)(fun)
else ignore(name, "Hydra license is missing")(fun)
// if (hydraLicenseExists) super.test(name)(fun)
// else ignore(name, "Hydra license is missing")(fun)
ignore(name, "Hydra license is missing")(fun)
}
}

0 comments on commit 95157db

Please sign in to comment.