We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d63c694 commit a6570b9Copy full SHA for a6570b9
tests/common_test_functionality.sh
@@ -102,8 +102,8 @@ run_tests() {
102
103
# Run the command
104
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; }
+ 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; }
106
else
107
- eval "uv run pytest ${pytest_args}"
+ eval "pytest ${pytest_args}"
108
fi
109
}
0 commit comments