12 lines
486 B
Bash
12 lines
486 B
Bash
#!/bin/sh
|
|
#Tests
|
|
mkdir -p TestFiles
|
|
cd RecrownedGTK.Tests
|
|
TestFiles/NUnit.Runners/NUnit.ConsoleRunner.3.11.1/tools/nunit3-console.exe "RecrownedGTK.Tests.csproj" --result=nunit3 --work="TestFiles"
|
|
cd ..
|
|
mv TestFiles/nunit3 TestFiles/RecrownedGTK.Tests
|
|
|
|
cd RecrownedGTK.Tools.Tests
|
|
TestFiles/NUnit.Runners/NUnit.ConsoleRunner.3.11.1/tools/nunit3-console.exe "RecrownedGTK.Tools.Tests.csproj" --result=nunit3 --work="TestFiles"
|
|
cd ..
|
|
mv TestFiles/nunit3 TestFiles/RecrownedGTK.Tools.Tests |