Skip to content

Commit b131000

Browse files
azure-pipelines[bot]penguinolog
authored andcommitted
Set up CI with Azure Pipelines (#31)
1 parent 0a863a0 commit b131000

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

azure-pipelines.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Python package
2+
# Create and test a Python package on multiple Python versions.
3+
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
5+
6+
jobs:
7+
- job: 'PyLint'
8+
pool:
9+
vmIMage: 'VS2017-Win2016'
10+
strategy:
11+
maxParallel: 1
12+
steps:
13+
- task: UsePythonVersion@0
14+
inputs:
15+
versionSpec: '3.7'
16+
17+
- script: |
18+
python -m pip install --upgrade pip
19+
pip install -U setuptools
20+
pip install -r requirements.txt
21+
displayName: 'Install dependencies'
22+
23+
- script: |
24+
pip install -U pylint
25+
pylint -f msvs advanced_descriptors
26+
displayName: 'PyLint'

0 commit comments

Comments
 (0)