[MRG] Make sure the exit status gets passed along in Azure pipel… (#793)

[MRG] Make sure the exit status gets passed along in Azure pipelines
pull/842/head
Min RK 2020-01-30 11:57:00 +01:00 zatwierdzone przez GitHub
commit 19a47896ce
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 4 usunięć

Wyświetl plik

@ -3,9 +3,6 @@ pool:
vmImage: "ubuntu-16.04"
strategy:
matrix:
lint:
REPO_TYPE: 'lint'
python_version: '3.6'
unit:
REPO_TYPE: 'unit'
python_version: '3.6'
@ -62,7 +59,7 @@ steps:
- script: pip install -e .
displayName: 'Install repo2docker'
- script: pushd tests; pytest --durations 10 --cov repo2docker -v $(REPO_TYPE); popd
- script: pushd tests && pytest --durations 10 --cov repo2docker -v $(REPO_TYPE) && popd
displayName: 'Run tests $(REPO_TYPE)'
- script: |