Skip to content

Commit ed57159

Browse files
committed
Update GH Actions to use pytest
Signed-off-by: Roger Aiudi <[email protected]>
1 parent ddd5468 commit ed57159

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/test/entrypoint.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ if [ "${CODECOV_TOKEN}" != "" ]; then
1616
${PYTHON} -m pip install coverage codecov
1717

1818
run_tests() {
19-
${PYTHON} -m coverage run -m unittest
19+
${PYTHON} -m coverage run -m pytest
2020
${PYTHON} -m coverage xml
2121
${PYTHON} -m codecov --token=${CODECOV_TOKEN}
2222
}
2323
else
24-
run_tests() { ${PYTHON} -m unittest; }
24+
run_tests() { ${PYTHON} -m pytest }
2525
fi
2626

2727
run_tests # Run tests for latest HBase compat

0 commit comments

Comments
 (0)