File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -410,7 +410,8 @@ The code above will leave your browser window open in case there's a failure. (i
410
410
-n=NUM # Multithread the tests using that many threads. (Speed up test runs!)
411
411
-s # See print statements. (Should be on by default with pytest.ini present.)
412
412
--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!)
414
415
-m=MARKER # Run tests with the specified pytest marker.
415
416
` ` `
416
417
Original file line number Diff line number Diff line change @@ -90,7 +90,8 @@ pytest my_first_test.py --settings-file=custom_settings.py
90
90
-n=NUM # Multithread the tests using that many threads. (Speed up test runs!)
91
91
-s # See print statements. (Should be on by default with pytest.ini present.)
92
92
--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!)
94
95
-m=MARKER # Run tests with the specified pytest marker.
95
96
```
96
97
You can’t perform that action at this time.
0 commit comments