File tree 1 file changed +1
-6
lines changed
1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -43,12 +43,7 @@ build_script:
43
43
# to run your custom scripts instead of automatic tests
44
44
test_script :
45
45
- ps : |
46
- $testAssemblies = @(
47
- "UnitTests\GitCommandsTests\bin\Release\GitCommandsTests.dll"
48
- "UnitTests\GitUITests\bin\Release\GitUITests.dll"
49
- "UnitTests\Plugins\ReleaseNotesGeneratorTests\bin\Release\ReleaseNotesGeneratorTests.dll"
50
- "UnitTests\ResourceManagerTests\bin\Release\ResourceManagerTests.dll"
51
- )
46
+ $testAssemblies = (Get-ChildItem -Path UnitTests\*\bin\Release\ -Filter '*Tests.dll' -Recurse -Exclude 'ApprovalTests.dll').FullName
52
47
$packageConfig = [xml](Get-Content .nuget\packages.config)
53
48
$opencover_version = $packageConfig.SelectSingleNode('/packages/package[@id="OpenCover"]').version
54
49
$opencover_console = "packages\OpenCover.$opencover_version\tools\OpenCover.Console.exe"
You can’t perform that action at this time.
0 commit comments