-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove use of gotestsum in Makefile #706
Remove use of gotestsum in Makefile #706
Conversation
Codecov Report
@@ Coverage Diff @@
## master #706 +/- ##
=======================================
Coverage 84.05% 84.05%
=======================================
Files 70 70
Lines 9490 9490
=======================================
Hits 7977 7977
Misses 1215 1215
Partials 298 298 Continue to review full report at Codecov.
|
Hang on. |
That's quite true, it doesn't resolve the root cause of the issue, but it does resolve the fact that running Personally, I'd prefer not to have Given that, I'll give fixing that test a try because it does seem more beneficial |
@ericzhang6222 Could I please get some help with 849153c#r37910456 |
Okay, after spending far too long messing around with the guts of
Passing output should look like
Rather than
The next piece of the puzzle is this reported issue where redirecting os.Stdout causes tests to fail A search in the kingpin repo reveals that os. SummaryWe can't change this test to pass without some serious rework (as far as I can see) so we're left with 2 options:
The best option still seems to be to change the Makefile so that |
The failing of tests in gotestsum is resolved in go1.4. Closing this PR |
* Remove app-name and import-paths as required flags * Make app-name required for certain importers * Replace `With` functions with Configure * Fix default import, add more tests
Fixes an issue with
make test
failing whengotestsum
is installed by removinggotestsum
from the Makefile.Closes #705
@anz-bank/sysl-developers