Skip to content
Snippets Groups Projects
Commit 121f59bb authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

Disable Python linters on Azure pipelines.

This patch disables execution of Python lintes on Azure pipelines, as
they are now executed through Github Actions.
parent bbf6d51f
No related branches found
No related tags found
No related merge requests found
...@@ -18,27 +18,6 @@ pool: ...@@ -18,27 +18,6 @@ pool:
vmImage: 'ubuntu-18.04' vmImage: 'ubuntu-18.04'
stages: stages:
- stage: Linters
jobs:
- job: RunLinters
displayName: Run Linters
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.6'
- script: python -m pip install --upgrade pip setuptools wheel
displayName: Install tools
- script: pip install pydocstyle flake8
displayName: Install dependencies
- script: flake8 .
displayName: Run flake8 checks
- script: pydocstyle .
displayName: Verify docstings
- stage: Centos7 - stage: Centos7
dependsOn: [] dependsOn: []
jobs: jobs:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment