This repository was archived by the owner on Jun 27, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
src/GitTools.Core.Tests/Git Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 7
7
- nuget install NUnit.Runners -Version 3.2.1 -OutputDirectory ./src/packages
8
8
script :
9
9
- xbuild ./src/GitTools.Core.sln /property:Configuration="Debug" /verbosity:detailed
10
- - mono --debug --runtime=v4.0.30319 ./src/packages/NUnit.ConsoleRunner.3.2.1/tools/nunit3-console.exe ./output/debug/GitTools.Core.Tests/net45/GitTools.Core.Tests.dll
10
+ - mono --debug --runtime=v4.0.30319 ./src/packages/NUnit.ConsoleRunner.3.2.1/tools/nunit3-console.exe ./output/debug/GitTools.Core.Tests/net45/GitTools.Core.Tests.dll -where "cat != NoMono"
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ These core libraries may prove useful if you are a library or application with i
11
11
![ NuGet downloads] ( https://img.shields.io/nuget/dt/gittools.core.svg )
12
12
![ Version] ( https://img.shields.io/nuget/v/gittools.core.svg )
13
13
![ Pre-release version] ( https://img.shields.io/nuget/vpre/gittools.core.svg )
14
+ [ ![ Build Status] ( https://travis-ci.org/GitTools/GitTools.Core.svg?branch=master )] ( https://travis-ci.org/GitTools/GitTools.Core )
14
15
15
16
## Features
16
17
- Repository normalisation
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ public class GitRepositoryFactoryTests
19
19
[ Test ]
20
20
[ TestCase ( DefaultBranchName , DefaultBranchName ) ]
21
21
[ TestCase ( SpecificBranchName , SpecificBranchName ) ]
22
+ [ Category ( "NoMono" ) ]
22
23
public void WorksCorrectlyWithRemoteRepository ( string branchName , string expectedBranchName )
23
24
{
24
25
var repoName = Guid . NewGuid ( ) . ToString ( ) ;
@@ -119,6 +120,7 @@ public void UpdatesExistingDynamicRepository()
119
120
}
120
121
121
122
[ Test ]
123
+ [ Category ( "NoMono" ) ]
122
124
public void PicksAnotherDirectoryNameWhenDynamicRepoFolderTaken ( )
123
125
{
124
126
var repoName = Guid . NewGuid ( ) . ToString ( ) ;
You can’t perform that action at this time.
0 commit comments