File tree Expand file tree Collapse file tree 6 files changed +19
-2
lines changed Expand file tree Collapse file tree 6 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ TestResult.xml
19
19
/NuGet
20
20
rabbit-mock.snk
21
21
test.sh
22
+ * .VisualState.xml
22
23
23
24
# ################
24
25
# # Visual Studio
Original file line number Diff line number Diff line change @@ -37,3 +37,9 @@ On Windows run:
37
37
On osx/linux run:
38
38
39
39
run-test.sh
40
+
41
+
42
+ Running individual tests and fixtures on Windows is trivial using the Visual Studio test runner.
43
+ To run a single test fixture on osx/linux you can use:
44
+
45
+ ./fake.sh Test fixture=MyNameSpace.MyFixture
Original file line number Diff line number Diff line change 1
- version : " 3.5.5 .{build}"
1
+ version : " 3.6.3 .{build}"
2
2
3
3
platform : Any CPU
4
4
configuration : Release
Original file line number Diff line number Diff line change @@ -118,9 +118,12 @@ Target "UpdateAssemblyInfos"
118
118
{ f with AssemblyVersion = version }))
119
119
120
120
let test excludes =
121
+ let fixture = getBuildParamOrDefault " fixture" " "
122
+ trace <| sprintf " fixture %s " fixture
121
123
!! ( " ./projects/client/**/build/**/unit-tests.dll" )
122
124
|> NUnit ( fun p ->
123
125
{ p with
126
+ Fixture = fixture
124
127
TimeOut = TimeSpan.FromMinutes 30.
125
128
ExcludeCategory = excludes
126
129
DisableShadowCopy = true ;
Original file line number Diff line number Diff line change 4
4
5
5
mono .paket/paket.bootstrapper.exe
6
6
mono .paket/paket.exe restore
7
- mono ./packages/FAKE/tools/FAKE.exe build.fsx $1
7
+ mono ./packages/FAKE/tools/FAKE.exe build.fsx $@
Original file line number Diff line number Diff line change
1
+ <NUnitProject>
2
+ <Settings activeconfig="Debug" />
3
+ <Config name="Debug" binpathtype="Auto">
4
+ <assembly path="projects/client/Unit/build/bin/unit-tests.dll" />
5
+ </Config>
6
+ <Config name="Release" binpathtype="Auto" />
7
+ </NUnitProject>
You can’t perform that action at this time.
0 commit comments