Skip to content

Commit ad7569b

Browse files
committed
Optimize ipdb Mode
1 parent d99773f commit ad7569b

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

examples/setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
exclude=recordings,temp
44
ignore=W503
55

6+
[ipdb]
7+
context=5
8+
69
[nosetests]
710
# nocapture=1 (Display print statements from output)
811
# (Undo this by using: "--nologcapture")

seleniumbase/console_scripts/sb_mkdir.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,9 @@ def main():
165165
data.append("[flake8]")
166166
data.append("exclude=recordings,temp")
167167
data.append("")
168+
data.append("[ipdb]")
169+
data.append("context=5")
170+
data.append("")
168171
data.append("[nosetests]")
169172
data.append("nocapture=1")
170173
data.append("logging-level=INFO")

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
exclude=recordings,temp
44
ignore=W503
55

6+
[ipdb]
7+
context=5
8+
69
[nosetests]
710
# nocapture=1 (Display print statements from output)
811
# (Undo this by using: "--nologcapture")

0 commit comments

Comments
 (0)