File tree Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,9 @@ Create multiple `AtumContext` with different control measures to be applied
12
12
### Option 1
13
13
``` scala
14
14
val atumContextInstanceWithRecordCount = AtumContext (processor = processor)
15
- .withMeasureAdded(RecordCount (MockMeasureNames .recordCount1, controlCol = " id" ))
16
- .withMeasureAdded(RecordCount (MockMeasureNames .recordCount1, measuredColumn = " id" ))
15
+ .withMeasureAdded(RecordCount (MockMeasureNames .recordCount1))
17
16
18
17
val atumContextWithSalaryAbsMeasure = atumContextInstanceWithRecordCount
19
- .withMeasureAdded(AbsSumOfValuesOfColumn (controlCol = " salary" ))
20
18
.withMeasureAdded(AbsSumOfValuesOfColumn (measuredColumn = " salary" ))
21
19
```
22
20
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ initialize := {
34
34
// this routine can be used to assert the required Java version
35
35
}
36
36
37
- Test / parallelExecution := false
38
37
39
38
enablePlugins(FlywayPlugin )
40
39
flywayUrl := FlywayConfiguration .flywayUrl
Original file line number Diff line number Diff line change @@ -244,18 +244,18 @@ object Dependencies {
244
244
val typeLevelOrg = " org.typelevel"
245
245
246
246
// 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
249
249
250
250
// 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
253
253
254
254
// ZIO backend
255
- lazy val sttpZio = sttpClient3Org %% " zio" % Versions .sttpClient % Optional
255
+ val sttpZio = sttpClient3Org %% " zio" % Versions .sttpClient % Optional
256
256
257
257
// testing
258
- lazy val zioTest = zioOrg %% " zio-test" % Versions .zio % Test
258
+ val zioTest = zioOrg %% " zio-test" % Versions .zio % Test
259
259
260
260
Seq (
261
261
sttpCore,
You can’t perform that action at this time.
0 commit comments