diff options
author | 2019-04-19 11:17:40 +1000 | |
---|---|---|
committer | 2019-04-19 11:17:40 +1000 | |
commit | 5ec1093d62de69beb7a0002c49ef247708bccd1e (patch) | |
tree | 8700ae12655f5cdfb1b07f4de333da9eab09a6eb | |
parent | Get verbose output for linter. (diff) |
Output verbose linter to console.
-rw-r--r-- | azure-pipelines.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0723db57..9abc84d4 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,7 +19,7 @@ jobs: - script: python3 -m pip install pipenv && pipenv install --dev --system && python3 -m pip install flake8-formatter-junit-xml displayName: 'Install Project Environment' - - script: python3 -m flake8 -vv --format junit-xml --output-file test-lint.xml + - script: python3 -m flake8 -vv && python3 -m flake8 --format junit-xml --output-file test-lint.xml displayName: 'Run Linter' - task: PublishTestResults@2 |