We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed4e7ee commit fa4ebbbCopy full SHA for fa4ebbb
ci/code_checks.sh
@@ -52,6 +52,13 @@ fi
52
### LINTING ###
53
if [[ -z "$CHECK" || "$CHECK" == "lint" ]]; then
54
55
+ echo "black --version"
56
+ black --version
57
+
58
+ MSG='Checking black formatting' ; echo $MSG
59
+ black pandas --check
60
+ RET=$(($RET + $?)) ; echo $MSG "DONE"
61
62
# `setup.cfg` contains the list of error codes that are being ignored in flake8
63
64
echo "flake8 --version"
environment.yml
@@ -16,6 +16,7 @@ dependencies:
16
- cython>=0.28.2
17
18
# code checks
19
+ - black
20
- cpplint
21
- flake8
22
- flake8-comprehensions # used by flake8, linting of unnecessary comprehensions
0 commit comments