We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92b88e9 commit b6b077fCopy full SHA for b6b077f
GitVersion.yml
@@ -1,4 +1,4 @@
1
-next-version: 3.15.3
+next-version: 3.15.4
2
mode: ContinuousDelivery
3
legacy-semver-padding: 5
4
build-metadata-padding: 5
src/NUnitEngine/nunit.engine.core/Drivers/NUnit3DriverFactory.cs
@@ -20,7 +20,7 @@ public class NUnit3DriverFactory : IDriverFactory
20
/// <param name="reference">An AssemblyName referring to the possible test framework.</param>
21
public bool IsSupportedTestFramework(AssemblyName reference)
22
{
23
- return NUNIT_FRAMEWORK.Equals(reference.Name, StringComparison.OrdinalIgnoreCase) && reference.Version.Major == 3;
+ return NUNIT_FRAMEWORK.Equals(reference.Name, StringComparison.OrdinalIgnoreCase) && reference.Version.Major >= 3;
24
}
25
26
#if NETFRAMEWORK
0 commit comments