Update the deploy scripts

This commit is contained in:
Michael Mintz 2019-10-02 01:34:46 -04:00
parent 473f13e60f
commit 7503bde90e
2 changed files with 2 additions and 2 deletions

View File

@ -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"

View File

@ -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: |