File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
tutorials/accelerated-python/brev Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,24 +4,24 @@ START_TIME=$(date +%s.%N)
44
55nvidia-smi
66
7- # Run regular package tests
7+ # Run regular package tests.
88echo " Running regular package tests..."
99pytest /accelerated-computing-hub/tutorials/accelerated-python/test/test_packages.py
1010EXIT_CODE_PACKAGES=$?
1111
12- # Run RAPIDS tests in the venv
12+ # Run RAPIDS tests.
1313echo " "
1414echo " Running RAPIDS package tests in virtual environment..."
1515/opt/venvs/rapids/bin/pytest /accelerated-computing-hub/tutorials/accelerated-python/test/test_rapids.py
1616EXIT_CODE_RAPIDS=$?
1717
18- # Test solution notebooks
18+ # Test solution notebooks.
1919echo " "
2020echo " Running solution notebook tests..."
2121pytest /accelerated-computing-hub/tutorials/accelerated-python/test/test_notebooks.py
2222EXIT_CODE_NOTEBOOKS=$?
2323
24- # Overall exit code is non-zero if any test suite failed
24+ # Overall exit code is non-zero if any test suite failed.
2525EXIT_CODE=$(( EXIT_CODE_PACKAGES || EXIT_CODE_RAPIDS || EXIT_CODE_NOTEBOOKS))
2626
2727END_TIME=$( date +%s.%N)
You can’t perform that action at this time.
0 commit comments