Skip to content

Commit 0e7675e

Browse files
committed
- further cleaning
1 parent bc82a5b commit 0e7675e

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

agent/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@ Create multiple `AtumContext` with different control measures to be applied
1212
### Option 1
1313
```scala
1414
val atumContextInstanceWithRecordCount = AtumContext(processor = processor)
15-
.withMeasureAdded(RecordCount(MockMeasureNames.recordCount1, controlCol = "id"))
16-
.withMeasureAdded(RecordCount(MockMeasureNames.recordCount1, measuredColumn = "id"))
15+
.withMeasureAdded(RecordCount(MockMeasureNames.recordCount1))
1716

1817
val atumContextWithSalaryAbsMeasure = atumContextInstanceWithRecordCount
19-
.withMeasureAdded(AbsSumOfValuesOfColumn(controlCol = "salary"))
2018
.withMeasureAdded(AbsSumOfValuesOfColumn(measuredColumn = "salary"))
2119
```
2220

build.sbt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ initialize := {
3434
//this routine can be used to assert the required Java version
3535
}
3636

37-
Test/parallelExecution := false
3837

3938
enablePlugins(FlywayPlugin)
4039
flywayUrl := FlywayConfiguration.flywayUrl

project/Dependencies.scala

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -244,18 +244,18 @@ object Dependencies {
244244
val typeLevelOrg = "org.typelevel"
245245

246246
// STTP core and Circe integration
247-
lazy val sttpCore = sttpClient3Org %% "core" % Versions.sttpClient
248-
lazy val sttpCirce = sttpClient3Org %% "circe" % Versions.sttpClient
247+
val sttpCore = sttpClient3Org %% "core" % Versions.sttpClient
248+
val sttpCirce = sttpClient3Org %% "circe" % Versions.sttpClient
249249

250250
// Cats backend
251-
lazy val catsEffect = typeLevelOrg %% "cats-effect" % Versions.catsEffect % Optional
252-
lazy val sttpCats = sttpClient3Org %% "cats" % Versions.sttpClient % Optional
251+
val catsEffect = typeLevelOrg %% "cats-effect" % Versions.catsEffect % Optional
252+
val sttpCats = sttpClient3Org %% "cats" % Versions.sttpClient % Optional
253253

254254
// ZIO backend
255-
lazy val sttpZio = sttpClient3Org %% "zio" % Versions.sttpClient % Optional
255+
val sttpZio = sttpClient3Org %% "zio" % Versions.sttpClient % Optional
256256

257257
// testing
258-
lazy val zioTest = zioOrg %% "zio-test" % Versions.zio % Test
258+
val zioTest = zioOrg %% "zio-test" % Versions.zio % Test
259259

260260
Seq(
261261
sttpCore,

0 commit comments

Comments
 (0)