From 7503bde90eaafbd3a0f1ee663002606156dc6711 Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Wed, 2 Oct 2019 01:34:46 -0400 Subject: [PATCH] Update the deploy scripts --- .travis.yml | 2 +- azure-pipelines.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9d2df7f0..882e5933 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ before_install: install: - "pip install --upgrade pip" - "pip install -r requirements.txt --upgrade" - - "python setup.py develop" + - "python setup.py install" - "sudo rm -f /etc/boto.cfg" before_script: - "flake8 --exclude=temp" diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c3abc14b..3ea957af 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -30,7 +30,7 @@ jobs: - script: python -m pip install --upgrade pip && pip install -r requirements.txt displayName: 'Install dependencies' - - script: python setup.py develop + - script: python setup.py install displayName: 'Install SeleniumBase' - script: |