mirror of
https://github.com/onyx-and-iris/voicemeeter.git
synced 2024-11-15 17:40:51 +00:00
12 lines
279 B
PowerShell
12 lines
279 B
PowerShell
Function RunTests {
|
|
$run_ext_tests = "go clean -testcache; go test -v .\tests\"
|
|
$run_int_tests = "go clean -testcache; go test -v .\voicemeeter\"
|
|
|
|
Invoke-Expression $run_ext_tests
|
|
Invoke-Expression $run_int_tests
|
|
}
|
|
|
|
if ($MyInvocation.InvocationName -ne ".") {
|
|
RunTests
|
|
}
|