Skip to content

Commit

Permalink
make integratedTests mandatory. (#3118)
Browse files Browse the repository at this point in the history
  • Loading branch information
CusiniM authored May 10, 2024
1 parent 33c1962 commit 720eb22
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,7 @@ jobs:
- check_code_style_and_documentation
- cpu_builds
- cuda_builds
- run_integrated_tests
if: ${{ always() }}
steps:
- run: |
Expand All @@ -340,10 +341,12 @@ jobs:
echo "check_code_style_and_documentation: ${{needs.check_code_style_and_documentation.result}}"
echo "cpu_builds: ${{needs.cpu_builds.result}}"
echo "cuda_builds: ${{needs.cuda_builds.result}}"
echo "run_integrated_tests: ${{needs.run_integrated_tests.result}} "
${{
needs.if_not_unassigned_pull_request.result == 'success' &&
needs.are_submodules_in_sync.result == 'success' &&
needs.check_code_style_and_documentation.result == 'success' &&
needs.cpu_builds.result == 'success' &&
needs.cuda_builds.result == 'success'
needs.cuda_builds.result == 'success' &&
needs.run_integrated_tests.result == 'success'
}}

0 comments on commit 720eb22

Please sign in to comment.