diff --git a/makefile.shade b/makefile.shade new file mode 100644 index 0000000000..1a2297d0cf --- /dev/null +++ b/makefile.shade @@ -0,0 +1,19 @@ +use-standard-lifecycle +k-standard-goals + +#run-nano-tests .compile + @{ + var configuration = Environment.GetEnvironmentVariable("Configuration"); + if (string.IsNullOrEmpty(configuration)) + { + configuration = "Debug"; + } + + var e2eTestsDirectory = Path.Combine(Directory.GetCurrentDirectory(), "test", "E2ETests"); + var testArgs = ""; + testArgs += " --configuration " + configuration; + testArgs += " -trait E2ETests=NanoServer"; + testArgs += " -parallel none"; + + Dotnet("test" + testArgs, e2eTestsDirectory); + } \ No newline at end of file