diff --git a/integration-test/aws-api-ec2/aws-api-ec2-tag-based.sh b/integration-test/aws-api-ec2/aws-api-ec2-tag-based.sh index 2227746db..ea38f21a6 100755 --- a/integration-test/aws-api-ec2/aws-api-ec2-tag-based.sh +++ b/integration-test/aws-api-ec2/aws-api-ec2-tag-based.sh @@ -1,5 +1,7 @@ #!/usr/bin/env bash +# Note: this seems completely outdated and is not used by CI + echo Running integration tests for aws-api-ec2-tag-based echo You need to run this from the root folder of the akka-management project @@ -17,6 +19,6 @@ sbt bootstrap-demo-aws-api-ec2-tag-based/universal:packageBin aws s3api create-bucket --bucket $BUCKET --region us-east-1 aws s3 cp bootstrap-demo/aws-api-ec2/target/universal/app.zip s3://$BUCKET/$BUILD_ID/ --acl public-read # run the actual integration test -sbt bootstrap-demo-aws-api-ec2-tag-based/it:test +sbt bootstrap-demo-aws-api-ec2-tag-based/test # delete file (save a few cents) aws s3 rm s3://$BUCKET/$BUILD_ID/app.zip diff --git a/integration-test/aws-api-ec2/build.sbt b/integration-test/aws-api-ec2/build.sbt index 73fb91740..960dc6ba5 100644 --- a/integration-test/aws-api-ec2/build.sbt +++ b/integration-test/aws-api-ec2/build.sbt @@ -4,10 +4,10 @@ resolvers += "Akka library repository".at("https://repo.akka.io/maven") Universal / packageName := "app" // should produce app.zip -libraryDependencies += "com.amazonaws" % "aws-java-sdk-cloudformation" % "1.12.635" % IntegrationTest +libraryDependencies += "com.amazonaws" % "aws-java-sdk-cloudformation" % "1.12.635" % Test -libraryDependencies += "com.amazonaws" % "aws-java-sdk-autoscaling" % "1.12.635" % IntegrationTest +libraryDependencies += "com.amazonaws" % "aws-java-sdk-autoscaling" % "1.12.635" % Test libraryDependencies += "com.fasterxml.jackson.core" % "jackson-databind" % "2.15.3" // aws SDK depends on insecure jackson -libraryDependencies += "org.scalatest" %% "scalatest" % Dependencies.ScalaTestVersion % IntegrationTest +libraryDependencies += "org.scalatest" %% "scalatest" % Dependencies.ScalaTestVersion % Test diff --git a/integration-test/aws-api-ec2/src/it/resources/application.conf b/integration-test/aws-api-ec2/src/test/resources/application.conf similarity index 100% rename from integration-test/aws-api-ec2/src/it/resources/application.conf rename to integration-test/aws-api-ec2/src/test/resources/application.conf diff --git a/integration-test/aws-api-ec2/src/it/scala/akka/cluster/bootstrap/IntegrationTest.scala b/integration-test/aws-api-ec2/src/test/scala/akka/cluster/bootstrap/IntegrationTest.scala similarity index 100% rename from integration-test/aws-api-ec2/src/it/scala/akka/cluster/bootstrap/IntegrationTest.scala rename to integration-test/aws-api-ec2/src/test/scala/akka/cluster/bootstrap/IntegrationTest.scala