voicemeeter/tests/pre-commit.ps1
onyx-and-iris 1efac19b12 docstrings added to functions, types and methods
CHANGELOG first update

pre-commit updated to look in root of repo.

version retraction added to go.mod

README updated to reflect changes
2022-07-10 23:08:14 +01:00

12 lines
266 B
PowerShell

Function RunTests {
$run_int_tests = "go clean -testcache; go test -v ."
$run_ext_tests = "go clean -testcache; go test -v .\tests\"
Invoke-Expression $run_ext_tests
Invoke-Expression $run_int_tests
}
if ($MyInvocation.InvocationName -ne ".") {
RunTests
}