Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ci order #581

Merged
merged 10 commits into from
Aug 31, 2022
8 changes: 4 additions & 4 deletions ci/container_integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ echo "#####################"

exit_code=0

## Test Merlin
echo "Run integration tests for Merlin"
/Merlin/ci/test_integration.sh $container $devices || exit_code=1

# Test NVTabular
## Not shared storage in blossom yet, inference testing cannot be run
echo "Run integration tests for NVTabular"
Expand All @@ -23,10 +27,6 @@ echo "Run integration tests for Merlin Models"
echo "Run integration tests for Transformers4Rec"
/transformers4rec/ci/test_integration.sh $container $devices || exit_code=1

## Test Merlin
echo "Run integration tests for Merlin"
/Merlin/ci/test_integration.sh $container $devices || exit_code=1

if [[ "$suppress_failures" -eq 0 ]]
then
exit 0
Expand Down