aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2019-01-03 20:07:33 +0100
committerGravatar Johannes Christ <[email protected]>2019-01-03 20:07:33 +0100
commit0958a874f6bc851ad671d0fefac176c78939b964 (patch)
treec5efc92963bcb0cfb2bfabf7ca30122e0542388c
parentAdd `pytest` dev dependency. (diff)
Add testing step to CI.
-rw-r--r--azure-pipelines.yml3
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'