From cd084cdbcce6e1e7402e7835c6b4114ecdd09ef8 Mon Sep 17 00:00:00 2001 From: Eagle0600 Date: Wed, 19 Nov 2025 05:42:52 +1000 Subject: [PATCH] Add Additional Testing Scripts (#4571) * Add additional testing scripts * Edited batch scripts for consistency --- RunBoth-Quick.bat | 3 +++ runclient-Quick.bat | 3 +++ runserver-Quick.bat | 3 +++ runtestsYAMLLinter-Quick.bat | 3 +++ runtestsYAMLLinter.bat | 3 +++ 5 files changed, 15 insertions(+) create mode 100644 RunBoth-Quick.bat create mode 100644 runclient-Quick.bat create mode 100644 runserver-Quick.bat create mode 100644 runtestsYAMLLinter-Quick.bat create mode 100644 runtestsYAMLLinter.bat diff --git a/RunBoth-Quick.bat b/RunBoth-Quick.bat new file mode 100644 index 0000000000..8a3a419122 --- /dev/null +++ b/RunBoth-Quick.bat @@ -0,0 +1,3 @@ +@echo off +start "DeltaVServer" cmd /k "runserver-Quick.bat" +start "DeltaVClient" cmd /k "runclient-Quick.bat" diff --git a/runclient-Quick.bat b/runclient-Quick.bat new file mode 100644 index 0000000000..1cb3aae4d1 --- /dev/null +++ b/runclient-Quick.bat @@ -0,0 +1,3 @@ +@echo off +dotnet run --project Content.Client --no-build +pause \ No newline at end of file diff --git a/runserver-Quick.bat b/runserver-Quick.bat new file mode 100644 index 0000000000..6be83c2df1 --- /dev/null +++ b/runserver-Quick.bat @@ -0,0 +1,3 @@ +@echo off +dotnet run --project Content.Server --no-build +pause diff --git a/runtestsYAMLLinter-Quick.bat b/runtestsYAMLLinter-Quick.bat new file mode 100644 index 0000000000..e5422f502a --- /dev/null +++ b/runtestsYAMLLinter-Quick.bat @@ -0,0 +1,3 @@ +@echo off +dotnet run --project Content.YAMLLinter --no-build +pause \ No newline at end of file diff --git a/runtestsYAMLLinter.bat b/runtestsYAMLLinter.bat new file mode 100644 index 0000000000..6654ce1429 --- /dev/null +++ b/runtestsYAMLLinter.bat @@ -0,0 +1,3 @@ +@echo off +dotnet run --project Content.YAMLLinter +pause \ No newline at end of file