diff options
author | 2019-01-03 20:07:33 +0100 | |
---|---|---|
committer | 2019-01-03 20:07:33 +0100 | |
commit | 0958a874f6bc851ad671d0fefac176c78939b964 (patch) | |
tree | c5efc92963bcb0cfb2bfabf7ca30122e0542388c | |
parent | Add `pytest` dev dependency. (diff) |
Add testing step to CI.
-rw-r--r-- | azure-pipelines.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6a63cfe21..0f968e618 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -36,6 +36,9 @@ jobs: - script: python -m flake8 displayName: 'Run linter' + - script: python -m pytest tests + displayName: Run tests + - job: build displayName: 'Build Containers' dependsOn: 'test' |