ciconq
ciconq

Reputation: 247

How to disable generating nunit-agent log file when running tests with nunit3-console

I have a question regarding the nunit3-console. When running tests through it I am observing a generation of log files like internal-trace and nunit-agent text files.

I was able to disable the generation of the internal-trace with the --trace=off option but for each run having the test .dll specified I am noticing a nunit-agentNumber.txt file generated.

My question is, is this a problem? More specifically for CI/CD and is there an option to disable this? Or clean it at least after each run.

Upvotes: 4

Views: 1371

Answers (2)

Chris Shaw
Chris Shaw

Reputation: 31

BTW, This got un-fixed in ConsoleRunner v3.17.0. Version 3.16.3 still doesn't spam you, though...

Upvotes: 0

Charlie
Charlie

Reputation: 13681

Version 3.15 of the engine introduced a new internal feature, allowing code to change the level of debugging dynamically. (Not yet exposed to users, but intended to be eventually)

As a side effect, it looks as if empty log files are being created. For the moment, the only way to avoid this is to go back to the previous release.

A fix was created in the development code for version 4.0, but has not been ported back to the version 3 code. A bug report might help with that. :-)

Upvotes: 5

Related Questions