mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
24 lines
356 B
Bash
Executable File
24 lines
356 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function isort_all () {
|
|
isort -y hyperglass/*.py
|
|
if [[ ! $? == 0 ]]; then
|
|
exit 1
|
|
fi
|
|
isort -y hyperglass/**/*.py
|
|
if [[ ! $? == 0 ]]; then
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
function validate_examples () {
|
|
python3 ./validate_examples.py
|
|
if [[ ! $? == 0 ]]; then
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
# isort_all
|
|
validate_examples
|
|
|
|
exit 0 |