Skip to content

Commit

Permalink
uh
Browse files Browse the repository at this point in the history
  • Loading branch information
carmocca committed Apr 3, 2024
1 parent 2be0ccd commit 58e62ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run_standalone_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ status=0
for test in $tests; do
CUDA_VISIBLE_DEVICES=$devices python -um pytest -sv "$test" --pythonwarnings ignore --junitxml="$test-results.xml" 2>&1 > "$test-output.txt"
pytest_status=$?
result=$([ $pytest -eq 0 ] && echo "PASSED" || echo "returned status $pytest_status")
result=$([ $pytest_status -eq 0 ] && echo "PASSED" || echo "returned status $pytest_status")
printf "$test result\n"

if [ $pytest_status -ne 0 ]; then
Expand Down

0 comments on commit 58e62ed

Please sign in to comment.