Add azure pipelines for testing

pull/787/head
Carol Willing 2019-09-07 22:34:08 +02:00
rodzic 37774fc288
commit f3d9ac4a85
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 5FA188A82AE4C900
2 zmienionych plików z 21 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,20 @@
# 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'
- script: pytest --durations 10 --cov repo2docker -v tests
displayName: 'Run pytest'

Wyświetl plik

@ -5,3 +5,4 @@ pytest>=3.6
wheel
pytest-cov
pre-commit
requests