Skip to content

Commit a6570b9

Browse files
committed
test
1 parent d63c694 commit a6570b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/common_test_functionality.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ run_tests() {
102102

103103
# Run the command
104104
if [ "$trap_deselected_exit_code" -eq "1" ]; then
105-
eval "uv run pytest ${pytest_args}" || { exit_code=$?; if [ "$exit_code" -eq ${last_failed_no_failures_code} ]; then echo "All tests deselected"; else exit $exit_code; fi; }
105+
eval "pytest ${pytest_args}" || { exit_code=$?; if [ "$exit_code" -eq ${last_failed_no_failures_code} ]; then echo "All tests deselected"; else exit $exit_code; fi; }
106106
else
107-
eval "uv run pytest ${pytest_args}"
107+
eval "pytest ${pytest_args}"
108108
fi
109109
}

0 commit comments

Comments
 (0)