From 646faffb4ef797ec9777cfa721dd7b847634a08b Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Wed, 24 Apr 2019 18:45:11 +0200 Subject: [PATCH] Use requirements.txt for PyGitHub --- azure-pipelines.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e323ad5f..fa36b2f9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -24,8 +24,9 @@ steps: - script: python -m pip install --upgrade pip setuptools wheel displayName: 'Install Python Tools' -- script: python -m pip install --user PyGithub - displayName: 'Install PyGithub' +- script: python -m pip install --user -r requirements.txt + displayName: 'Install Python Libraries' + workingDirectory: "blog" - script: python before_build.py displayName: "Run before_build.py script"