anaconda/anaconda-40.22.3.13/tests/ruff/run_ruff.sh
2024-11-14 21:39:56 -08:00

14 lines
316 B
Bash
Executable file

#!/bin/bash
# If $top_srcdir has not been set by automake, detect it
if [ -z "$top_srcdir" ]; then
top_srcdir="$(realpath "$(dirname "$0")/../..")"
fi
ruff --version
ruff check \
--config "$top_srcdir/tests/ruff/ruff.toml" \
"$top_srcdir/pyanaconda/" \
"$top_srcdir/tests/" \
"$top_srcdir/scripts/" \