Skip to content

Commit c1e9171

Browse files
committed
Update the ReadMe
1 parent 9a0e5c3 commit c1e9171

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -435,13 +435,13 @@ import ipdb; ipdb.set_trace() # Enter debugging mode. n = next, c = continue, s
435435
import pytest; pytest.set_trace() # Enter debugging mode. n = next, c = continue, s = step.
436436
```
437437
438-
🔵 To pause an active test that throws an exception or error, add ``--pdb``:
438+
🔵 To pause an active test that throws an exception or error, (*and keep the browser window open while **Debug Mode** begins in the console*), add **``--pdb``** as a ``pytest`` option:
439439
440440
```bash
441441
pytest my_first_test.py --pdb
442442
```
443443
444-
The code above will leave your browser window open in case there's a failure. (ipdb commands: 'n', 'c', 's' => next, continue, step).
444+
(**``ipdb``** console commands: ``n``, ``c``, ``s`` => ``next``, ``continue``, ``step``).
445445
446446
<a id="pytest_options"></a>
447447
🔵 Here are some useful command-line options that come with <code>pytest</code>:

0 commit comments

Comments
 (0)