Skip to content

Commit

Permalink
Automerge website updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mschuwalow committed Mar 11, 2024
1 parent 1fc19c4 commit 0c4ac21
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 1
labels:
- label: "automerge"
authors: ["scala-steward", "app/renovate"]
authors: ["scala-steward", "github-actions[bot]", "app/renovate"]
- label: "auto-approve"
authors: ["scala-steward", "app/renovate"]
authors: ["scala-steward", "github-actions[bot]", "app/renovate"]
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ object PluginSamplingProfilerSpec extends BaseSpec {
assertTrue(isFastEffect(sortedEntries(1).costCenter))
}
}
)
) @@ TestAspect.flaky

}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ object SamplingProfilerSpec extends BaseSpec {
suite("SamplingProfiler")(
test("Should correctly profile simple example program") {
val program = for {
_ <- CostCenter.withChildCostCenter("short")(ZIO.succeed(Thread.sleep(200)))
_ <- CostCenter.withChildCostCenter("short")(ZIO.succeed(Thread.sleep(100)))
_ <- CostCenter.withChildCostCenter("long")(ZIO.succeed(Thread.sleep(400)))
} yield ()

Expand All @@ -25,7 +25,7 @@ object SamplingProfilerSpec extends BaseSpec {
assertTrue(isLongEffect(sortedEntries(0).costCenter)) &&
assertTrue(isShortEffect(sortedEntries(1).costCenter))
}
}
} @@ TestAspect.flaky
)

}

0 comments on commit 0c4ac21

Please sign in to comment.