Skip to content

Commit 6709d15

Browse files
authored
Merge pull request #828 from seleniumbase/update-ipython-and-docs
Update ipython version and docs
2 parents a86b8cc + 3a3c010 commit 6709d15

File tree

8 files changed

+15
-11
lines changed

8 files changed

+15
-11
lines changed

docs/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ readme-renderer==29.0
88
pymdown-extensions==8.1.1
99
lunr==0.5.8
1010
mkdocs==1.1.2
11-
mkdocs-material==7.0.2
11+
mkdocs-material==6.2.3
12+
mkdocs-exclude-search==0.3.1
1213
mkdocs-simple-hooks==0.1.2
1314
mkdocs-material-extensions==1.0.1
1415
mkdocs-minify-plugin==0.4.0

help_docs/customizing_test_runs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[<img src="https://seleniumbase.io/cdn/img/super_logo_sb.png" title="SeleniumBase" width="320">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)
22

3-
<h2><img src="https://seleniumbase.io/img/logo6.png" title="SeleniumBase" width="32" /> CLI Options</h2>
3+
# pytest CLI Options
44

5-
You can customize test runs from the command-line interface thanks to [SeleniumBase's pytest plugin](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/plugins/pytest_plugin.py), which adds CLI options for setting/enabling the browser type, headless mode, mobile mode, multithreading mode, demo mode, proxy config, user agent config, browser extensions, and more.
5+
SeleniumBase's [pytest plugin](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/plugins/pytest_plugin.py) lets you customize test runs from the CLI (Command-Line Interface), which adds options for setting/enabling the browser type, headless mode, mobile mode, demo mode, multi-threading mode, reuse-session mode, proxy config, user agent config, browser extensions, report mode, and more.
66

77
Here are some examples of configuring tests, which can be run from the [examples/](https://github.com/seleniumbase/SeleniumBase/tree/master/examples) folder:
88

integrations/google_cloud/ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ sudo python setup.py develop
9191
pytest examples/my_first_test.py --headless
9292
```
9393

94-
#### Step 14. If you like nosetests better than pytest, that works too
94+
#### Step 14. If you prefer using nosetests, that works too
9595

9696
```bash
9797
nosetests examples/my_first_test.py --headless
@@ -138,7 +138,7 @@ If you have a web application that you want to test, you'll be able to create Se
138138

139139
#### Congratulations! You're now well on your way to becoming a build & release / automation engineer!
140140

141-
## MySQL DB setup instructions
141+
### MySQL DB setup instructions
142142

143143
#### Step 21. Return to the Google Cloud Launcher and launch a MySQL Instance
144144

mkdocs.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ theme:
3535
# collapse_navigation: false
3636
# titles_only: false
3737
include_search_page: false
38-
search_index_only: false
38+
search_index_only: true
3939
static_templates:
4040
- 404.html
4141
features:
@@ -58,9 +58,12 @@ theme:
5858
# Plugins
5959
plugins:
6060
- search:
61-
separator: '[\s\-]+'
61+
separator: '[\s]+'
6262
prebuild_index: false
6363
lang: en
64+
- exclude-search:
65+
exclude:
66+
- chinese.md
6467
- minify:
6568
minify_html: true
6669
- mkdocs-simple-hooks:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ prompt-toolkit==3.0.16;python_version>="3.6"
6262
ipython==5.10.0;python_version<"3.5"
6363
ipython==6.5.0;python_version>="3.5" and python_version<"3.6"
6464
ipython==7.16.1;python_version>="3.6" and python_version<"3.7"
65-
ipython==7.20.0;python_version>="3.7"
65+
ipython==7.21.0;python_version>="3.7"
6666
colorama==0.4.4
6767
pathlib2==2.3.5;python_version<"3.5"
6868
importlib-metadata==2.0.0;python_version<"3.6"

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "1.56.1"
2+
__version__ = "1.56.2"

seleniumbase/console_scripts/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[<img src="https://seleniumbase.io/cdn/img/super_logo_sb.png" title="SeleniumBase" width="290">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)
22

3-
<h2><img src="https://seleniumbase.io/img/logo3a.png" title="SeleniumBase" width="28" /> Console Scripts</h2>
3+
## Console Scripts
44

55
SeleniumBase console scripts help you get things done more easily, such as installing web drivers, creating a test directory with necessary configuration files, converting old WebDriver unittest scripts into SeleniumBase code, translating tests into multiple languages, and using the Selenium Grid.
66

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
'ipython==5.10.0;python_version<"3.5"',
167167
'ipython==6.5.0;python_version>="3.5" and python_version<"3.6"',
168168
'ipython==7.16.1;python_version>="3.6" and python_version<"3.7"',
169-
'ipython==7.20.0;python_version>="3.7"',
169+
'ipython==7.21.0;python_version>="3.7"',
170170
'colorama==0.4.4',
171171
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
172172
'importlib-metadata==2.0.0;python_version<"3.6"', # Sync "virtualenv"

0 commit comments

Comments
 (0)