diff --git a/tests/pre-commit.ps1 b/tests/pre-commit.ps1 index 571b6c6..8053dd7 100644 --- a/tests/pre-commit.ps1 +++ b/tests/pre-commit.ps1 @@ -1,7 +1,9 @@ Function RunTests { - $run_tests = "cd ../; go clean -testcache; go test ./..." + $run_ext_tests = "go clean -testcache; go test -v .\tests\" + $run_int_tests = "go clean -testcache; go test -v .\voicemeeter\" - Invoke-Expression $run_tests + Invoke-Expression $run_ext_tests + Invoke-Expression $run_int_tests } if ($MyInvocation.InvocationName -ne ".") {