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 b5a226c commit b55134b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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 "Gatling / testOnly ru.tinkoff.gatling.amqp.examples.AmqpGatlingTest" coverageReport
run: sbt clean coverage "GatlingIt / testOnly ru.tinkoff.gatling.amqp.it.AmqpGatlingTest" coverageReport

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

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

lazy val rabbitmq = "com.rabbitmq" % "amqp-client" % "5.16.0"
lazy val commonsPool = "org.apache.commons" % "commons-pool2" % "2.11.1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ru.tinkoff.gatling.amqp.examples
package ru.tinkoff.gatling.amqp.it

import com.rabbitmq.client.BuiltinExchangeType
import io.gatling.core.Predef._
Expand Down

0 comments on commit b55134b

Please sign in to comment.