Skip to content
Snippets Groups Projects
Commit 01c5bdba authored by Nathaniel Manista's avatar Nathaniel Manista Committed by GitHub
Browse files

Merge pull request #9736 from nathanielmanistaatgoogle/sanity

Sanity improvements.
parents 47c3e7cd b3a1ec21
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ objs ...@@ -9,6 +9,7 @@ objs
cython_debug/ cython_debug/
python_build/ python_build/
python_format_venv/ python_format_venv/
python_pylint_venv/
.coverage* .coverage*
.eggs .eggs
htmlcov/ htmlcov/
......
...@@ -53,7 +53,7 @@ for dir in $DIRS; do ...@@ -53,7 +53,7 @@ for dir in $DIRS; do
tempdir=`mktemp -d` tempdir=`mktemp -d`
cp -RT $dir $tempdir cp -RT $dir $tempdir
$PYTHON -m yapf -i -r -p $exclusion_args $dir $PYTHON -m yapf -i -r -p $exclusion_args $dir
if ! diff -rq $dir $tempdir; then if ! diff -r $dir $tempdir; then
script_result=1 script_result=1
fi fi
rm -rf $tempdir rm -rf $tempdir
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment