Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Internal: update vsts build #635

Merged
merged 12 commits into from
Aug 8, 2018
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ install:
- pip install -e .

script:
- yapf -dpr aztk/ aztk_cli/
- yapf --style .style.yapf -dpr aztk/ aztk_cli/
- pylint -E aztk
- pytest --ignore=tests/integration_tests

Expand Down
8 changes: 7 additions & 1 deletion .vsts-ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
trigger:
- master
- internal/update-and-fix-builds


phases:
Expand All @@ -19,10 +20,15 @@ phases:
displayName: install aztk

- script: |
yapf -dpr aztk/ aztk_cli/
yapf --style .style.yapf -dpr aztk/ aztk_cli/
condition: succeeded()
displayName: yapf

- script: |
pylint -E aztk
condition: succeeded()
displayName: pylint

- script: |
pytest -n 102
condition: succeeded()
Expand Down