Update Deploy Script

This commit is contained in:
Michael Mintz 2017-10-06 20:12:49 -04:00
parent 68b99517fe
commit 18109c2a40
1 changed files with 1 additions and 4 deletions

View File

@ -17,11 +17,8 @@ before_script:
- "flake8 seleniumbase/*/*/*/*.py"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "export PATH=$PWD/travis_phantomjs/phantomjs-2.1.1-linux-x86_64/bin:$PATH"
- "if [ $(phantomjs --version) != '2.1.1' ]; then rm -rf $PWD/travis_phantomjs; mkdir -p $PWD/travis_phantomjs; fi"
- "if [ $(phantomjs --version) != '2.1.1' ]; then wget https://assets.membergetmember.co/software/phantomjs-2.1.1-linux-x86_64.tar.bz2 -O $PWD/travis_phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2; fi"
- "if [ $(phantomjs --version) != '2.1.1' ]; then tar -xvf $PWD/travis_phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C $PWD/travis_phantomjs; fi"
- "phantomjs --version"
- "firefox --version"
script:
- "pytest examples/my_first_test.py --with-selenium --browser=phantomjs"
- "pytest examples/my_first_test.py --with-selenium --browser=firefox -s"