diff --git a/.github/workflows/ci-delta-ship.yml b/.github/workflows/ci-delta-ship.yml index 4d33a9d873..7bfe16cf33 100644 --- a/.github/workflows/ci-delta-ship.yml +++ b/.github/workflows/ci-delta-ship.yml @@ -35,7 +35,6 @@ jobs: - name: Clean, build Delta & Storage images run: | sbt -Dsbt.color=always -Dsbt.supershell=false \ - clean \ app/Docker/publishLocal - name: Start services run: docker-compose -f tests/docker/docker-compose.yml up -d @@ -46,5 +45,5 @@ jobs: - name: Unit tests run: | sbt -Dsbt.color=always -Dsbt.supershell=false \ - clean \ - ship-unit-tests + ship/testOnly *Spec + ship/testOnly *Suite diff --git a/ship/src/test/scala/ch/epfl/bluebrain/nexus/ship/EndToEndTest.scala b/ship/src/test/scala/ch/epfl/bluebrain/nexus/ship/ShipIntegrationSpec.scala similarity index 99% rename from ship/src/test/scala/ch/epfl/bluebrain/nexus/ship/EndToEndTest.scala rename to ship/src/test/scala/ch/epfl/bluebrain/nexus/ship/ShipIntegrationSpec.scala index ba83fce6d8..f95011dab1 100644 --- a/ship/src/test/scala/ch/epfl/bluebrain/nexus/ship/EndToEndTest.scala +++ b/ship/src/test/scala/ch/epfl/bluebrain/nexus/ship/ShipIntegrationSpec.scala @@ -22,7 +22,7 @@ import java.nio.file.{Files, Paths} import scala.concurrent.duration.DurationInt import scala.jdk.CollectionConverters.IteratorHasAsScala -class EndToEndTest extends BaseIntegrationSpec { +class ShipIntegrationSpec extends BaseIntegrationSpec { override def beforeAll(): Unit = { super.beforeAll()