Skip to content
Snippets Groups Projects
Commit 3edd3405 authored by Dominique Barton's avatar Dominique Barton :unicorn:
Browse files

BUILD: Make curl verbose on errors

parent 5aa48e63
Branches
Tags 1.0.1
No related merge requests found
......@@ -45,7 +45,7 @@ install:
#
isort:
curl -sfLo .isort.cfg $(LINTER_CONFIGS)/isort.cfg
curl -sSfLo .isort.cfg $(LINTER_CONFIGS)/isort.cfg
isort $(SOURCE_DIRS)
#
......@@ -53,19 +53,19 @@ isort:
#
test-isort:
curl -sfLo .isort.cfg $(LINTER_CONFIGS)/isort.cfg
curl -sSfLo .isort.cfg $(LINTER_CONFIGS)/isort.cfg
isort -c --diff $(SOURCE_DIRS)
test-pycodestyle:
curl -sfLo tox.ini $(LINTER_CONFIGS)/tox.ini
curl -sSfLo tox.ini $(LINTER_CONFIGS)/tox.ini
pycodestyle $(SOURCE_DIRS)
test-pylint:
curl -sfLo .pylintrc $(LINTER_CONFIGS)/pylintrc
curl -sSfLo .pylintrc $(LINTER_CONFIGS)/pylintrc
pylint $(SOURCE_DIRS)
test-unittest:
curl -so .coveragerc $(LINTER_CONFIGS)/coveragerc
curl -sSfLo .coveragerc $(LINTER_CONFIGS)/coveragerc
coverage run $(which python) -m unittest
test-coverage:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment