From 760a241849dd6b5ecdd48c7ae69fc1083b9eb87c Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 29 Apr 2020 00:30:20 +0000 Subject: [PATCH 1/2] Attempt to fix pylint CI failing --- azure-pipelines-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure-pipelines-ci.yml b/azure-pipelines-ci.yml index 49b032ed2e8a2e..8362f30f608b98 100644 --- a/azure-pipelines-ci.yml +++ b/azure-pipelines-ci.yml @@ -208,6 +208,9 @@ stages: python -m venv venv . venv/bin/activate + # This is a TEMP. Eventually we should make sure our 4 dependencies drop typing. + # Find offending deps with `pipdeptree -r -p typing` + pip uninstall -y typing pip install -U pip setuptools wheel pip install -r requirements_all.txt -c homeassistant/package_constraints.txt pip install -r requirements_test.txt -c homeassistant/package_constraints.txt From 410b691f5bdd38a987fc2dfb1833f3faf75cc452 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 29 Apr 2020 00:57:53 +0000 Subject: [PATCH 2/2] attempt #2: relocate --- 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 8362f30f608b98..c8fc16e4b95cda 100644 --- a/azure-pipelines-ci.yml +++ b/azure-pipelines-ci.yml @@ -208,14 +208,14 @@ stages: python -m venv venv . venv/bin/activate - # This is a TEMP. Eventually we should make sure our 4 dependencies drop typing. - # Find offending deps with `pipdeptree -r -p typing` - pip uninstall -y typing pip install -U pip setuptools wheel pip install -r requirements_all.txt -c homeassistant/package_constraints.txt pip install -r requirements_test.txt -c homeassistant/package_constraints.txt - script: | . venv/bin/activate + # This is a TEMP. Eventually we should make sure our 4 dependencies drop typing. + # Find offending deps with `pipdeptree -r -p typing` + pip uninstall -y typing pip install -e . displayName: "Install Home Assistant" - script: |