Skip to content

Commit

Permalink
Fix the test-cuml-python command for version 22.08+.
Browse files Browse the repository at this point in the history
Running the pytest python tests from within the cuml/python directory
triggers an error, because pytest_plugins must be configured in the root
conftest.py module as of pytest version 4.0.
  • Loading branch information
csadorf committed Oct 19, 2022
1 parent fe9c462 commit c597fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/bash-utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ test-raft-python() {
export -f test-raft-python;

test-cuml-python() {
test-python "$CUML_HOME/python" $@;
test-python "$CUML_HOME/python/cuml/tests" $@;
}

export -f test-cuml-python;
Expand Down

0 comments on commit c597fbe

Please sign in to comment.