Skip to content

Commit

Permalink
Revert "Temporarily disable tests in CI"
Browse files Browse the repository at this point in the history
This reverts commit 376030a.
  • Loading branch information
rmunn committed Mar 14, 2024
1 parent 794fe18 commit 341dd6b
Showing 1 changed file with 13 additions and 17 deletions.
30 changes: 13 additions & 17 deletions .github/workflows/ci+cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,24 +52,20 @@ jobs:
# Unfortunately we need two test steps because we need different filters.
# We could conditionally set an environment variable, but unfortunately
# the syntax to access that is different on Windows vs Linux.
- name: Test on Linux
run: dotnet test --no-build -c Release --filter TestCategory!=RequiresUI -- NUnit.TestOutputXml=TestResults
if: matrix.os == 'ubuntu-latest'

- name: Test on Windows
run: dotnet test --no-build -c Release --filter TestCategory!=SkipOnBuildServer -- NUnit.TestOutputXml=TestResults
if: matrix.os == 'windows-latest'

# Tests disabled temporarily while we iterate on the build process. They're all working except for the one flaky one,
# but they take two hours to run so it's hard to iterate. - 2024-03 RM
# CODE REVIEW NOTE: If I forget to uncomment this block before submitting the PR for review, yell at me in code review.
# - name: Test on Linux
# run: dotnet test --no-build -c Release --filter TestCategory!=RequiresUI -- NUnit.TestOutputXml=TestResults
# if: matrix.os == 'ubuntu-latest'

# - name: Test on Windows
# run: dotnet test --no-build -c Release --filter TestCategory!=SkipOnBuildServer -- NUnit.TestOutputXml=TestResults
# if: matrix.os == 'windows-latest'

# - name: Upload Test Results
# if: always()
# uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
# with:
# name: Test Results (${{matrix.os}})
# path: "**/TestResults/*.xml"
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
with:
name: Test Results (${{matrix.os}})
path: "**/TestResults/*.xml"

- name: Checkout Chorus Help # required for Chorus Merge Module
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2
Expand Down

0 comments on commit 341dd6b

Please sign in to comment.