@@ -205,6 +205,12 @@ jobs:
205205 ./buildExternalPackages.ps1
206206 cd PackagesForTests
207207 nuget install packages.config
208+ - name : Upload Connectors
209+ uses : actions/upload-artifact@v4
210+ with :
211+ name : Connectors
212+ if-no-files-found : error
213+ path : Connectors/bin/${{ steps.versions.outputs.product_configuration }}
208214 - name : Upload Connector Tests
209215 uses : actions/upload-artifact@v4
210216 with :
@@ -216,7 +222,9 @@ jobs:
216222 with :
217223 name : SpecsTests
218224 if-no-files-found : error
219- path : Tests/Reqnroll.VisualStudio.Specs/bin/
225+ path : |
226+ Tests/Reqnroll.VisualStudio.Specs/bin/
227+ !Tests/Reqnroll.VisualStudio.Specs/bin/**/Connectors/
220228
221229 connector-tests :
222230 runs-on : windows-latest
@@ -235,6 +243,11 @@ jobs:
235243 with :
236244 name : ConnectorTests
237245 path : Tests/Connector/Reqnroll.VisualStudio.ReqnrollConnector.Tests/bin/
246+ - name : Download Connectors
247+ uses : actions/download-artifact@v4
248+ with :
249+ name : Connectors
250+ path : Connectors/bin/${{ needs.build.outputs.product_configuration }}
238251 - name : Connector Tests
239252 run : dotnet test ./Tests/Connector/Reqnroll.VisualStudio.ReqnrollConnector.Tests/bin/${{ needs.build.outputs.product_configuration }}/*/Reqnroll.VisualStudio.ReqnrollConnector.Tests.dll ${{ needs.build.outputs.test_params }}
240253 - name : Upload Test Result TRX Files
@@ -262,6 +275,11 @@ jobs:
262275 with :
263276 name : SpecsTests
264277 path : Tests/Reqnroll.VisualStudio.Specs/bin/
278+ - name : Download Connectors
279+ uses : actions/download-artifact@v4
280+ with :
281+ name : Connectors
282+ path : Tests/Reqnroll.VisualStudio.Specs/bin/${{ needs.build.outputs.product_configuration }}/net481/Connectors
265283 - name : Specs Tests
266284 run : >
267285 dotnet test ./Tests/Reqnroll.VisualStudio.Specs/bin/${{ needs.build.outputs.product_configuration }}/*/Reqnroll.VisualStudio.Specs.dll
0 commit comments