File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -124,18 +124,22 @@ Target "UpdateAssemblyInfos"
124
124
ReplaceAssemblyInfoVersionsBulk assemblyInfos ( fun f ->
125
125
{ f with AssemblyVersion = version }))
126
126
127
- let test w =
127
+ let test ``where`` =
128
128
setRabbitMqCtlPath ()
129
- //TODO reimplement fixure selection
130
- let fixture = getBuildParamOrDefault " fixture" " "
131
- trace <| sprintf " fixture %s " fixture
129
+ let w =
130
+ match `` where `` , getBuildParamOrDefault " where" " " with
131
+ | ( " " | null ), w -> w
132
+ | _, ( " " | null ) -> `` where ``
133
+ | w, x ->
134
+ sprintf " (%s ) & (%s )" w x
135
+ trace <| sprintf " where %s " w
132
136
!! ( " ./projects/client/**/build/**/unit-tests.dll" )
133
137
|> Testing.NUnit3.NUnit3 ( fun p ->
134
138
{ p with
135
139
Labels = Testing.NUnit3.LabelsLevel.All
136
140
ProcessModel = Testing.NUnit3.SingleProcessModel
137
141
TimeOut = TimeSpan.FromMinutes 30.
138
- Where = w
142
+ Where = w
139
143
OutputDir = " test-output.log" })
140
144
141
145
Target " Test" ( fun _ ->
@@ -158,7 +162,7 @@ Target "TestQuick" (fun _ ->
158
162
TimeOut = TimeSpan.FromMinutes 30.
159
163
Where = `` where ``
160
164
OutputDir = " test-output.log" }))
161
-
165
+
162
166
Target " AppVeyorTest" ( fun _ ->
163
167
test " cat != RequireSMP & cat != LongRunning & cat != GCTest" )
164
168
Original file line number Diff line number Diff line change 2
2
IF %1 == " " GOTO End
3
3
.paket\paket.bootstrapper.exe
4
4
.paket\paket.exe restore
5
- packages\FAKE\tools\FAKE.exe build.fsx %1
5
+ packages\FAKE\tools\FAKE.exe build.fsx %*
6
6
7
7
:End
8
8
ECHO " no target specified"
You can’t perform that action at this time.
0 commit comments