rodrigo-brito / gocity

:bar_chart: Code City metaphor for visualizing Go source code in 3D
https://go-city.github.io
MIT License
1.8k stars 139 forks source link

Add support for WTC for go server and tests #64

Closed Wicked7000 closed 3 years ago

Wicked7000 commented 3 years ago

This addresses issue #62 and allows for WTC to look for changes on go files and go test files. It will run the server and tests async (otherwise you'd have to run tests first and then the server after, this might not be idle if tests take a long time. Hence they run at the same time only slight disadvantage of this is the logging can be a bit out of order but it shouldn't be too much of an issue as the server only logs out one line on startup)

Let me know if you encounter any issues or you think there needs to be any changes!

codecov[bot] commented 3 years ago

Codecov Report

Merging #64 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #64   +/-   ##
=======================================
  Coverage   96.38%   96.38%           
=======================================
  Files           8        8           
  Lines         166      166           
=======================================
  Hits          160      160           
  Misses          4        4           
  Partials        2        2           
Flag Coverage Δ
#unittests 96.38% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.


Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 2ca22d8...d304798. Read the comment docs.

rodrigo-brito commented 3 years ago

Nice job @Wicked7000, thanks for the contribution