File tree 3 files changed +16
-7
lines changed
3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 1
1
[tool .docstrfmt ]
2
2
extend_exclude = [" *.py" , " **/*.py" , " modules/**/*.py" ]
3
+
4
+ [tool .isort ]
5
+ skip_glob = [" modules/*" ]
6
+
7
+ [tool .flake8 ]
8
+ max-line-length = 110
9
+ exclude = [" modules/*" ]
10
+
11
+ [tool .black ]
12
+ exclude = '''
13
+ modules/*
14
+ '''
Original file line number Diff line number Diff line change 3
3
set -e
4
4
5
5
# openwisp-utils checks
6
- # This is done first to ignore build directories for openwisp-utils checks
6
+ # This is done first to ignore build directories for openwisp-utils checks
7
7
openwisp-qa-check \
8
8
--skip-checkmigrations \
9
9
--skip-checkmakemigrations\
@@ -15,7 +15,7 @@ openwisp-qa-check \
15
15
--jslinter
16
16
17
17
echo ' '
18
- echo ' Build documention to look for syntax errors'
18
+ echo ' Build documentation to look for syntax errors'
19
19
make build
20
20
21
21
# check for broken link
29
29
pylinkvalidate.py " $BASE_URL /dev/" \
30
30
-w 4 -m process
31
31
kill " ${pid} "
32
+ cd ..
32
33
33
34
# Verify PDFs are valid
34
- for pdf in _build/* / * . pdf; do
35
+ find _build/ -type f -name " *.pdf " | while read -r pdf; do
35
36
if ! pdfinfo " $pdf " ; then
36
37
echo " $pdf is broken"
37
38
fi
38
39
done
39
40
40
- cd ..
41
41
python sort_spelling_wordlist.py --qa || \
42
42
(echo " Spelling Vocabulary not up to date" ; exit 1)
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments