Adding upstream version 0.13.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
1805ece79d
commit
d8f166e6bb
167 changed files with 15302 additions and 0 deletions
15
tools/windows/run_tests.bat
Normal file
15
tools/windows/run_tests.bat
Normal file
|
@ -0,0 +1,15 @@
|
|||
@echo off
|
||||
|
||||
set arg1=%1
|
||||
|
||||
IF "%arg1%"=="-p" (
|
||||
echo Running flake8...
|
||||
flake8 --extend-ignore=H307,H405,H803,H904,H802,H701 --max-line-length=120 --exclude="*settings.py,*.venv/*.py" gitlint qa examples
|
||||
) ELSE (
|
||||
:: Run passed arg, or all unit tests if passed arg is empty
|
||||
IF "%arg1%" == "" (
|
||||
pytest -rw -s gitlint
|
||||
) ELSE (
|
||||
pytest -rw -s %arg1%
|
||||
)
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue