Skip to content

Commit

Permalink
fix: publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
al.terekhov committed Feb 15, 2023
1 parent b55134b commit c3a8c18
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
java-version: [email protected]

- name: Tests
run: sbt clean coverage "GatlingIt / testOnly ru.tinkoff.gatling.amqp.it.AmqpGatlingTest" coverageReport
run: sbt clean coverage "Gatling / testOnly ru.tinkoff.gatling.amqp.examples.AmqpGatlingTest" coverageReport

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ object Dependencies {
)

lazy val gatling: Seq[ModuleID] = Seq(
"io.gatling.highcharts" % "gatling-charts-highcharts" % gatlingVersion % Runtime,
"io.gatling" % "gatling-test-framework" % gatlingVersion % Runtime,
"io.gatling.highcharts" % "gatling-charts-highcharts" % gatlingVersion % "it,test",
"io.gatling" % "gatling-test-framework" % gatlingVersion % "it,test",
)

lazy val rabbitmq = "com.rabbitmq" % "amqp-client" % "5.16.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
package ru.tinkoff.gatling.amqp.it
package ru.tinkoff.gatling.amqp.examples

import com.rabbitmq.client.BuiltinExchangeType
import io.gatling.core.Predef._
import io.gatling.javaapi.core.CoreDsl.{bodyBytes, bodyString, jmesPath, jsonPath, substring, xpath}
import ru.tinkoff.gatling.amqp.javaapi.AmqpDsl._
import ru.tinkoff.gatling.amqp.javaapi.protocol._
import io.gatling.javaapi.core.CoreDsl.{bodyBytes, bodyString, jmesPath, jsonPath, substring, xpath}

import java.util
import scala.jdk.javaapi.CollectionConverters.asJava

class AmqpGatlingTest extends Simulation {

Expand Down

0 comments on commit c3a8c18

Please sign in to comment.