From 48dd5af9e3e8efb481dc0e9342e49427c6486c35 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Fri, 28 Jun 2019 22:18:52 +0200 Subject: [PATCH] Update azure-pipelines-ci.yml for Azure Pipelines --- azure-pipelines-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines-ci.yml b/azure-pipelines-ci.yml index 8e53fa671b2..5f3230002d2 100644 --- a/azure-pipelines-ci.yml +++ b/azure-pipelines-ci.yml @@ -38,7 +38,7 @@ stages: pip install flake8 displayName: 'Setup Env' - script: | - . lint/bin/activate + . venv/bin/activate flake8 homeassistant tests script displayName: 'Run flake8' - job: 'Validate' @@ -50,7 +50,7 @@ stages: python -m venv venv . venv/bin/activate - pip install . + pip install -e . displayName: 'Setup Env' - script: | . venv/bin/activate @@ -58,7 +58,7 @@ stages: displayName: 'Validate manifests' - script: | . venv/bin/activate - python script/gen_requirements_all.py validate + ./script/gen_requirements_all.py validate displayName: 'requirements_all validate' - stage: 'Tests'