You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If both the unitTests and unitTestRunner arguments to BuildSettings.Initialize are omitted, the first defaults to **/*.tests.dll|**/*.tests.exe (case insensitive) and an instance of NUnitLiteRunner is used for the second.
This causes an error if both are omitted because NUnitLite expects an exe. The same error occurs if NUnitLite is actually specified but the unitTests pattern is omitted.
In both cases, we should attempt to run only executables.
As a workaround, until this is corrected, a pattern ending in ".exe" must be specified for NUnitLite.
The text was updated successfully, but these errors were encountered:
If both the
unitTests
andunitTestRunner
arguments toBuildSettings.Initialize
are omitted, the first defaults to**/*.tests.dll|**/*.tests.exe
(case insensitive) and an instance ofNUnitLiteRunner
is used for the second.This causes an error if both are omitted because NUnitLite expects an
exe
. The same error occurs if NUnitLite is actually specified but theunitTests
pattern is omitted.In both cases, we should attempt to run only executables.
As a workaround, until this is corrected, a pattern ending in ".exe" must be specified for NUnitLite.
The text was updated successfully, but these errors were encountered: