IF.Lastfm/run-tests.ps1

11 lines
227 B
PowerShell
Raw Normal View History

$ErrorActionPreference = 'Continue'
2015-04-23 22:51:26 +01:00
$testPaths = @(
"src\IF.Lastfm.Core.Tests\",
"src\IF.Lastfm.Core.Tests.Integration\",
"src\IF.Lastfm.SQLite.Tests.Integration\"
)
foreach ($path in $testPaths) {
dotnet test $path
}