ci: speed up CI using multiple processes with pylint and pytest (#67080)
parent
e0add9575c
commit
3cec274259
@ -1,5 +1,4 @@
|
||||
#!/bin/bash
|
||||
set -e -x
|
||||
env
|
||||
|
||||
pylint -f parseable --rcfile pylint.rc "$@" | tee pylint.out; test $PIPESTATUS -eq 0
|
||||
pylint --jobs ${NUMPROCESSES:-1} -f parseable --rcfile pylint.rc "$@" | tee pylint.out; test $PIPESTATUS -eq 0
|
||||
|
Loading…
Reference in New Issue