This repository was archived by the owner on Jan 6, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
src/GitTools.Testing.Tests Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -20,5 +20,13 @@ build:
20
20
after_build :
21
21
- cmd : dotnet pack src\GitTools.Testing\GitTools.Testing.csproj /p:PackageVersion="%GitVersion_NuGetVersion%" /p:NoBuild=true /p:PackageOutputPath=%APPVEYOR_BUILD_FOLDER%
22
22
- cmd : appveyor PushArtifact "GitTools.Testing.%GitVersion_NuGetVersion%.nupkg"
23
+
24
+ # Setting this off until the auto-detection for dotnet test tooling in AppVeyor
25
+ # is integrated. https://github.com/appveyor/ci/issues/1404
26
+ # The test_script is used as a workaround to fix this.
27
+ test : off
28
+ test_script :
29
+ - cmd : dotnet test src\GitTools.Testing.Tests\GitTools.Testing.Tests.csproj --configuration %Configuration% --no-build
30
+
23
31
cache :
24
32
- src\packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
Original file line number Diff line number Diff line change 25
25
<PackageReference Include =" xunit.abstractions" Version =" 2.0.1" />
26
26
<PackageReference Include =" xunit.core" Version =" 2.3.0-beta3-build3705" />
27
27
<PackageReference Include =" xunit.runner.visualstudio" Version =" 2.3.0-beta3-build3705" />
28
+ <PackageReference Include =" xunit.runner.console" Version =" 2.3.0-beta3-build3705" />
29
+ <DotNetCliToolReference Include =" dotnet-xunit" Version =" 2.3.0-beta2-build3683" />
28
30
</ItemGroup >
29
31
30
32
<ItemGroup Condition =" '$(TargetFramework)' == 'net452'" >
You can’t perform that action at this time.
0 commit comments