-
Notifications
You must be signed in to change notification settings - Fork 569
Go Test config - not all tests being executed #1497
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
Comments
Can you send a project that can replicate the issue? |
@Quikr I'm running a series of 128 tests, with 40 skipped and all the tests appear correctly for me. I'm running the tests via the package option. |
@Quikr I'm sure that all tests are executed but something wrong with parsing output of |
Ok, you are right my Logging is being done to the console, as such it confuses Test Parser when it's trying to determine if a Test has succeed or failed. As for an example it seems to be a hit and miss once I have something solid I will post it. |
Ok, got it apparently if the last output to the console doesn't have a carriage return line feed it the Test parser can't see the result from the Test correctly. func Test_Sp(t *testing.T) { I have a simple project I can send threw. cheers |
I've fixed the issue about tests, you can build plugin from sources or wait until nightly build will be ready (it's about 14 hours).
|
Go build -v -o Spacer.exe ./... Given I am in the working folder of s:\projects\Go\Spacer Doing a great jobs guys well done! |
Go Application run configuration doesn't cover this case yet. I'm closing the issue since the initial issue about tests is fixed. By the way, did you try the fixed version? |
"Go Application" - will look into it further - to be honest, I do so much work around the 'Go Test' that the only think I would like is the support of color output (of my logging) in the run window but bash or Terminal is ok at the moment (it helps identifying key areas in my logging) . Current Issue Tested against lastest nightly build and works fine. Thx. |
Speaking of the color output of the the logging - I've started playing around with the logger at "github.com/Sirupsen/logrus". One of the nice features of this logger is that it can log in color - However, when you try to log to stderr in IntelliJ the output is all red. Logging to stderr is nice as that's how the default logger logs, and thus if you try to log to stdout, you can get weird overlapping artifacts. Is there a way to prevent IntelliJ from logging the stderr text as all red? |
Please file a separate issue about that, I'll investigate it later.
Try |
Hmm, I unmarked it, but it didn't seem to do anything |
Maybe |
Derrrrr. :) I changed it and the coloring changed, however, I don't get the coloring On Tue, Mar 31, 2015 at 10:28 AM, Alexander Zolotov <
|
Builds runs the Tests of the 69 of 77 tests its says everything has passed (event log) but there 8 that it will not do.
Now if I run this in my other build environment everything runs as expected.
If I just select one of the tests that failed to run by itself it passes and works fine in the IDE.
Is there a limit of 69 tests that it can only execute?
As if I remove or add Tests it drops out at 69 Tests.
Running Webstorms 10.0
Go Plugin version 0.9.223
The text was updated successfully, but these errors were encountered: