kopia lustrzana https://github.com/jupyterhub/repo2docker
Merge pull request #787 from willingc/test-pipe
Add baseline infra for Azure Pipelinespull/789/head
commit
98de7d1630
|
@ -0,0 +1,21 @@
|
|||
# https://docs.microsoft.com/azure/devops/pipelines/ecosystems/python
|
||||
pool:
|
||||
vmImage: "ubuntu-16.04"
|
||||
|
||||
steps:
|
||||
- task: UsePythonVersion@0
|
||||
inputs:
|
||||
versionSpec: '3.6'
|
||||
|
||||
- script: python -m pip install --upgrade pip setuptools wheel
|
||||
displayName: 'Install tools'
|
||||
|
||||
- script: pip install -r dev-requirements.txt
|
||||
displayName: 'Install dev requirements'
|
||||
|
||||
- script: pip install -e .
|
||||
displayName: 'Install r2d'
|
||||
|
||||
# venv conda
|
||||
- script: pytest --durations 10 --cov repo2docker -vs tests/unit
|
||||
displayName: 'Run pytest'
|
|
@ -5,3 +5,4 @@ pytest>=3.6
|
|||
wheel
|
||||
pytest-cov
|
||||
pre-commit
|
||||
requests
|
||||
|
|
Ładowanie…
Reference in New Issue