Skip to content

Commit c0cfec4

Browse files
committed
Testing/Accelerated Python: Fix comments in test script.
1 parent abb4a85 commit c0cfec4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tutorials/accelerated-python/brev/test.bash

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@ START_TIME=$(date +%s.%N)
44

55
nvidia-smi
66

7-
# Run regular package tests
7+
# Run regular package tests.
88
echo "Running regular package tests..."
99
pytest /accelerated-computing-hub/tutorials/accelerated-python/test/test_packages.py
1010
EXIT_CODE_PACKAGES=$?
1111

12-
# Run RAPIDS tests in the venv
12+
# Run RAPIDS tests.
1313
echo ""
1414
echo "Running RAPIDS package tests in virtual environment..."
1515
/opt/venvs/rapids/bin/pytest /accelerated-computing-hub/tutorials/accelerated-python/test/test_rapids.py
1616
EXIT_CODE_RAPIDS=$?
1717

18-
# Test solution notebooks
18+
# Test solution notebooks.
1919
echo ""
2020
echo "Running solution notebook tests..."
2121
pytest /accelerated-computing-hub/tutorials/accelerated-python/test/test_notebooks.py
2222
EXIT_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.
2525
EXIT_CODE=$((EXIT_CODE_PACKAGES || EXIT_CODE_RAPIDS || EXIT_CODE_NOTEBOOKS))
2626

2727
END_TIME=$(date +%s.%N)

0 commit comments

Comments
 (0)