Skip to content

Commit

Permalink
Refind test split
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbales2 committed Feb 24, 2021
1 parent 6330d88 commit 3313714
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
with:
name: gtest_outputs_xml
path: '**/*_test.xml'
fwd:
name: fwd tests
fwd-non-fun-mix:
name: fwd tests and non-fun mix tests
runs-on: windows-latest

steps:
Expand Down Expand Up @@ -93,19 +93,24 @@ jobs:
- name: Add TBB to PATH
shell: powershell
run: echo "D:/a/math/math/lib/tbb" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
- name: Run fwd unit tests
- name: Run fwd unit tests and all the mix tests except those in mix/fun
shell: powershell
run: |
python.exe runTests.py test/unit/math/fwd
python.exe runTests.py test/unit/math/fwd
python.exe runTests.py test/unit/math/mix/core
python.exe runTests.py test/unit/math/mix/functor
python.exe runTests.py test/unit/math/mix/meta
python.exe runTests.py test/unit/math/mix/prob
python.exe runTests.py test/unit/math/mix/*_test.cpp
- name: Upload gtest_output xml
uses: actions/upload-artifact@v2
if: failure()
with:
name: gtest_outputs_xml
path: '**/*_test.xml'
mix:
name: mix tests
mix-fun:
name: mix/fun tests
runs-on: windows-latest

steps:
Expand Down Expand Up @@ -134,10 +139,10 @@ jobs:
- name: Add TBB to PATH
shell: powershell
run: echo "D:/a/math/math/lib/tbb" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
- name: Run mix unit tests
- name: Run mix/fun unit tests
shell: powershell
run: |
python.exe runTests.py test/unit/math/mix
python.exe runTests.py test/unit/math/mix/fun
- name: Upload gtest_output xml
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 3313714

Please sign in to comment.