Skip to content

Commit a07d98c

Browse files
committed
Update the documentation
1 parent 0fd5e03 commit a07d98c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,8 @@ The code above will leave your browser window open in case there's a failure. (i
410410
-n=NUM # Multithread the tests using that many threads. (Speed up test runs!)
411411
-s # See print statements. (Should be on by default with pytest.ini present.)
412412
--junit-xml=report.xml # Creates a junit-xml report after tests finish.
413-
--pdb # If a test fails, pause run and enter debug mode. (Don't use with CI!)
413+
--pdb # If a test fails, enter Post Mortem Debug Mode. (Don't use with CI!)
414+
--trace # Enter Debug Mode at the beginning of each test. (Don't use with CI!)
414415
-m=MARKER # Run tests with the specified pytest marker.
415416
```
416417

help_docs/customizing_test_runs.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ pytest my_first_test.py --settings-file=custom_settings.py
9090
-n=NUM # Multithread the tests using that many threads. (Speed up test runs!)
9191
-s # See print statements. (Should be on by default with pytest.ini present.)
9292
--junit-xml=report.xml # Creates a junit-xml report after tests finish.
93-
--pdb # If a test fails, pause run and enter debug mode. (Don't use with CI!)
93+
--pdb # If a test fails, enter Post Mortem Debug Mode. (Don't use with CI!)
94+
--trace # Enter Debug Mode at the beginning of each test. (Don't use with CI!)
9495
-m=MARKER # Run tests with the specified pytest marker.
9596
```
9697

0 commit comments

Comments
 (0)