We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37774fc commit f3d9ac4Copy full SHA for f3d9ac4
azure-pipelines.yml
@@ -0,0 +1,20 @@
1
+# https://docs.microsoft.com/azure/devops/pipelines/ecosystems/python
2
+pool:
3
+ vmImage: "ubuntu-16.04"
4
+
5
+steps:
6
+- task: UsePythonVersion@0
7
+ inputs:
8
+ versionSpec: '3.6'
9
10
+- script: python -m pip install --upgrade pip setuptools wheel
11
+ displayName: 'Install tools'
12
13
+- script: pip install -r dev-requirements.txt
14
+ displayName: 'Install dev requirements'
15
16
+- script: pip install -e .
17
+ displayName: 'Install r2d'
18
19
+- script: pytest --durations 10 --cov repo2docker -v tests
20
+ displayName: 'Run pytest'
dev-requirements.txt
@@ -5,3 +5,4 @@ pytest>=3.6
wheel
pytest-cov
pre-commit
+requests
0 commit comments