diff options
author | 2019-03-10 13:09:02 +0100 | |
---|---|---|
committer | 2019-03-10 13:09:02 +0100 | |
commit | 2f486ac6c7afbf88b12a27cd586be6ab34ef54ac (patch) | |
tree | 152ed147824d0f6d067f24c33318e12ea6598254 | |
parent | Remove pytest stage for pipeline. (diff) |
Run tests with bogus token.
-rw-r--r-- | azure-pipelines.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index be27a5ba8..81e3701e0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,7 +7,7 @@ variables: jobs: - job: test - displayName: 'Lint' + displayName: 'Lint & Test' pool: vmImage: ubuntu-16.04 @@ -36,6 +36,9 @@ jobs: - script: python -m flake8 displayName: 'Run linter' + - script: BOT_TOKEN=foobar python -m pytest tests + displayName: Run tests + - job: build displayName: 'Build Containers' dependsOn: 'test' |