smartystreets / goconvey

Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go.
http://smartystreets.github.io/goconvey/
Other
8.23k stars 554 forks source link

Use temporary directory for coverage reports. #647

Closed riannucci closed 2 years ago

riannucci commented 2 years ago

This keeps things simple and just uses one temporary directory per goconvey process to store all coverage reports, with an optional flag to leak the temporary directory after shutting down the server.

This will allow goconvey to properly report coverage for code using go modules.

Fixes #618 Fixes #564