Skip to content

Commit

Permalink
(build) Switch to running all tests
Browse files Browse the repository at this point in the history
For the time being, while we work through the next scope of work, we
want to make sure that we are running _all_ tests. This will ensure
that we don't miss anything when bringing in some of the planned
breaking changes in the next release.

All tests were already running on GitHub Actions when doing the nightly
test build, however, this makes it so they run on every CI build.  This
change can be backed out, once we have shipped the next release.
  • Loading branch information
gep13 committed Nov 1, 2022
1 parent 3b3d934 commit d737f3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Build with Mono
run: |
chmod +x build.sh
$GITHUB_WORKSPACE//build.sh --verbosity=diagnostic --target=CI
$GITHUB_WORKSPACE//build.sh --verbosity=diagnostic --target=CI --testExecutionType=all
- name: Upload Ubuntu build results
uses: actions/upload-artifact@v2
# Always upload build results
Expand All @@ -49,7 +49,7 @@ jobs:
path: tools
key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }}
- name: Build with .Net Framework
run: ./build.ps1 --verbosity=diagnostic --target=CI
run: ./build.ps1 --verbosity=diagnostic --target=CI --testExecutionType=all --shouldRunOpenCover=false
- name: Upload Windows build results
uses: actions/upload-artifact@v2
# Always upload build results
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Build with Mono
run: |
chmod +x build.sh
$GITHUB_WORKSPACE//build.sh --verbosity=diagnostic --target=CI
$GITHUB_WORKSPACE//build.sh --verbosity=diagnostic --target=CI --testExecutionType=all
- name: Upload MacOS build results
uses: actions/upload-artifact@v2
# Always upload build results
Expand Down
2 changes: 1 addition & 1 deletion .teamcity/settings.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ object Chocolatey : BuildType({

script {
name = "Call Cake"
scriptContent = "call build.official.bat --verbosity=diagnostic --target=CI"
scriptContent = "call build.official.bat --verbosity=diagnostic --target=CI --testExecutionType=all --shouldRunOpenCover=false"
}
}

Expand Down

0 comments on commit d737f3f

Please sign in to comment.