diff options
author | 2020-02-22 21:39:40 -0800 | |
---|---|---|
committer | 2020-02-22 21:39:40 -0800 | |
commit | ed6282bdca8896910851e5c01fbb39a79434b31a (patch) | |
tree | 53523de9e07de2493ba5161c25417a99cc68e32f | |
parent | Merge remote-tracking branch 'origin/master' into research (diff) |
Install linter
-rw-r--r-- | azure-pipelines.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9eeb58a..1c8cbbb 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,6 +8,9 @@ jobs: vmImage: 'ubuntu-18.04' steps: + - script: pip install flake8 + displayName: 'Install Linter' + - script: flake8 --format junit-xml --output-file test-lint.xml displayName: 'Run Linter' |