File tree Expand file tree Collapse file tree 6 files changed +60
-10
lines changed Expand file tree Collapse file tree 6 files changed +60
-10
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
2
sudo : false
3
- python :
4
- - " 2.7"
5
- # - "3.6"
3
+ matrix :
4
+ include :
5
+ - python : 2.7
6
+ - python : 3.6
6
7
addons :
7
- firefox : " 60.0 "
8
+ firefox : " 62.0.3 "
8
9
chrome : stable
9
10
before_install :
10
11
- " sudo mysql -e 'CREATE DATABASE IF NOT EXISTS test_db;'"
@@ -15,7 +16,7 @@ before_install:
15
16
install :
16
17
- " pip install --upgrade pip"
17
18
- " pip install -r requirements.txt --upgrade"
18
- - " pip install mysqlclient==1.3.12 "
19
+ - " pip install mysqlclient==1.3.14 "
19
20
- " python setup.py develop"
20
21
- " sudo rm -f /etc/boto.cfg"
21
22
before_script :
Original file line number Diff line number Diff line change 2
2
3
3
[ <img src =" https://img.shields.io/github/release/seleniumbase/SeleniumBase.svg " />] ( https://github.com/seleniumbase/SeleniumBase/releases ) [ <img src =" https://travis-ci.org/seleniumbase/SeleniumBase.svg?branch=master " alt =" Build Status " />] ( https://travis-ci.org/seleniumbase/SeleniumBase ) [ <img src =" https://badges.gitter.im/seleniumbase/SeleniumBase.svg " alt =" Join the Gitter Chat " />] ( https://gitter.im/seleniumbase/SeleniumBase ) [ <img src =" https://img.shields.io/github/stars/seleniumbase/seleniumbase.svg " alt =" GitHub Stars " />] ( https://github.com/seleniumbase/SeleniumBase/stargazers ) <br />
4
4
5
- A reliable test automation framework that extends [ Pytest ] ( https://docs.pytest .org/en/latest/ ) and uses [ Selenium-WebDriver ] ( https://www.seleniumhq .org/ ) .
5
+ Reliable browser automation and testing framework that uses [ Selenium-WebDriver ] ( https://www.seleniumhq .org/ ) and extends [ Pytest ] ( https://docs.pytest .org/en/latest / ) .
6
6
7
7
## <img src =" https://cdn2.hubspot.net/hubfs/100006/images/sb_logo_box2.png " title =" SeleniumBase " height =" 32 " > Quick Start
8
8
Original file line number Diff line number Diff line change 1
1
theme : jekyll-theme-cayman
2
2
title : SeleniumBase
3
- description : All-in-One Test Automation Framework
3
+ description : Reliable browser automation and testing framework
Original file line number Diff line number Diff line change 13
13
with open (path .join (this_directory , 'README.md' ), 'rb' ) as f :
14
14
long_description = f .read ().decode ('utf-8' )
15
15
except IOError :
16
- long_description = 'Web Automation, Testing, and User-Onboarding Framework'
16
+ long_description = 'Reliable Browser Automation and Testing Framework'
17
17
18
18
setup (
19
19
name = 'seleniumbase' ,
20
- version = '1.17.15 ' ,
21
- description = 'All-in-One Test Automation Framework' ,
20
+ version = '1.17.16 ' ,
21
+ description = 'Reliable Browser Automation and Testing Framework' ,
22
22
long_description = long_description ,
23
23
long_description_content_type = 'text/markdown' ,
24
24
url = 'https://github.com/seleniumbase/SeleniumBase' ,
Original file line number Diff line number Diff line change
1
+ @ ECHO OFF
2
+ :: Performs necessary setup steps to allow the use of
3
+ :: virtualenv commands such as "mkvirtualenv [ENV_NAME]"
4
+ :: for creating and using Python virtual environments.
5
+
6
+ python -m pip install --upgrade virtualenv
7
+ python -m pip install --upgrade virtualenvwrapper-win
8
+ echo " "
9
+ echo " "
10
+ echo " *** You may now use virtualenv commands in your command shell. ***"
11
+ echo " "
12
+ echo " virtualenv commands:"
13
+ echo " * 'mkvirtualenv [ENV_NAME]' - Create a Python virtual environment"
14
+ echo " * 'deactivate' - Exit the current virtual environment"
15
+ echo " * 'workon [ENV_NAME]' - Enter an existing virtual environment"
16
+ echo " * 'lsvirtualenv' OR 'workon' - List all virtual environments"
17
+ echo " * 'rmvirtualenv [ENV_NAME]' - Delete a virtual environment"
18
+ echo " "
19
+ echo " Example:"
20
+ echo " mkvirtualenv seleniumbase "
21
+ echo " "
Original file line number Diff line number Diff line change
1
+ # Performs necessary setup steps to allow the use of
2
+ # virtualenv commands such as "mkvirtualenv [ENV_NAME]"
3
+ # for creating and using Python virtual environments.
4
+ #
5
+ # Run by using the following command: "source virtualenv_install.sh"
6
+
7
+ python -m pip install --upgrade virtualenv
8
+ python -m pip install --upgrade virtualenvwrapper
9
+ source ` which virtualenvwrapper.sh`
10
+ export WORKON_HOME=$HOME /.virtualenvs
11
+ echo " "
12
+ echo " "
13
+ echo ' virtualenv commands will only work if you installed this using "source":'
14
+ echo ' *** "source virtualenv_install.sh" ***'
15
+ echo " "
16
+ echo " "
17
+ echo " *** You may now use virtualenv commands in your command shell. ***"
18
+ echo " "
19
+ echo " virtualenv commands:"
20
+ echo ' * "mkvirtualenv [ENV_NAME]" - Create a Python virtual environment'
21
+ echo ' * "deactivate" - Exit the current virtual environment'
22
+ echo ' * "workon [ENV_NAME]" - Enter an existing virtual environment'
23
+ echo ' * "lsvirtualenv" OR "workon" - List all virtual environments'
24
+ echo ' * "rmvirtualenv [ENV_NAME]" - Delete a virtual environment'
25
+ echo " "
26
+ echo " Example:"
27
+ echo " mkvirtualenv seleniumbase "
28
+ echo " "
You can’t perform that action at this time.
0 commit comments