Skip to content

Commit

Permalink
just dotnet test
Browse files Browse the repository at this point in the history
  • Loading branch information
agray committed Dec 18, 2024
1 parent 13b8716 commit 2c1b9e3
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,20 +315,23 @@ jobs:
- name: Compile solution
run: dotnet build -c ${{ env.CONFIG }}

- name: Run XUnit Integration Tests
uses: b3b00/[email protected]
with:
testProject: ${{ env.M_TUNIT_PROJECT }}
output: ${{ env.TUNIT_INTEGRATION_COVERAGE_FILENAME }}
outputFormat: ${{ env.COVERAGE_FORMAT }}
#threshold: ${{ env.COVERAGE_THRESHOLD }}
excludes: '[Merlin.TUnit]Tests.*'

- name: Publish Artifacts
uses: actions/upload-artifact@v4
with:
name: tunit-integration-test-results
path: ${{ env.TUNIT_INT_DIR }}/${{ env.TUNIT_INTEGRATION_COVERAGE_FILENAME }}
- name: Run TUnit Integration Tests
run: dotnet test

# - name: Run TUnit Integration Tests
# uses: b3b00/[email protected]
# with:
# testProject: ${{ env.M_TUNIT_PROJECT }}
# output: ${{ env.TUNIT_INTEGRATION_COVERAGE_FILENAME }}
# outputFormat: ${{ env.COVERAGE_FORMAT }}
# threshold: ${{ env.COVERAGE_THRESHOLD }}
# excludes: '[Merlin.TUnit]Tests.*'

# - name: Publish Artifacts
# uses: actions/upload-artifact@v4
# with:
# name: tunit-integration-test-results
# path: ${{ env.TUNIT_INT_DIR }}/${{ env.TUNIT_INTEGRATION_COVERAGE_FILENAME }}

generate-report:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2c1b9e3

Please sign in to comment.