diff options
author | 2019-04-19 11:26:34 +1000 | |
---|---|---|
committer | 2019-04-19 11:26:34 +1000 | |
commit | c4659b2ffc6b3cb2712a3d8be85b78b83363b547 (patch) | |
tree | c68e0e0a37381baa6da0dee41bede04ad6418c63 /azure-pipelines.yml | |
parent | Output verbose linter to console. (diff) |
Revert linter to non-verbose.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9abc84d4..9ca2b812 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -2,7 +2,7 @@ jobs: - job: python_lint - displayName: 'Lint' + displayName: 'Lint Job' pool: vmImage: ubuntu-16.04 @@ -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 && python3 -m flake8 --format junit-xml --output-file test-lint.xml + - script: python3 -m flake8 --format junit-xml --output-file test-lint.xml displayName: 'Run Linter' - task: PublishTestResults@2 @@ -29,7 +29,7 @@ jobs: testRunTitle: 'Site-Django Lint Results' - job: coverage_test - displayName: 'Test' + displayName: 'Test Job' dependsOn: python_lint pool: vmImage: ubuntu-16.04 @@ -75,7 +75,7 @@ jobs: testRunTitle: 'Site-Django Test Results' - job: docker - displayName: 'Build & Push' + displayName: 'Build & Push Job' dependsOn: coverage_test condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest')) pool: |