uber-go / cadence-client

Framework for authoring workflows and activities running on top of the Cadence orchestration engine.
https://cadenceworkflow.io
MIT License
339 stars 128 forks source link

Write coverage output to a static path #1303

Closed taylanisikdemir closed 7 months ago

taylanisikdemir commented 7 months ago

What changed? Unit test coverage output is currently written to a file with potentially non-static path. e.g. .build/go1.21.2_darwin_arm64/coverage/unit_test_cover.out Some 3rd party coverage reporting tools expects a static path to integrate. The change is to also write the coverage results to a predictable path .build/cover.out

Why? To easily integrate with 3rd party coverage reporting tools.

How did you test it? make unit_test