14 lines
316 B
Bash
Executable file
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/" \
|