You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting-started/2_Blueprint_File_Breakdown.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,7 @@ This file outlines the configuration of pytest, and ultimately how Playwright al
33
33
- Generate a HTML report in a single file, and output it in the `test-results` directory with the name `report.html`
34
34
- Generate a JSON report, omitting some collection data and then output it in the `test-results` directory with the name `results.json`
35
35
- Only generate Playwright stack-trace files when a test fails
36
+
- The `pythonpath` section just sets the base of this project for the pythonpath system variable utilised by pytest. This is designed to mitigate local configuration issues, see the [pytest documentation for more information](https://docs.pytest.org/en/stable/explanation/pythonpath.html).
36
37
- The `markers` section is for organizing any marks (or tags) you want to apply to your tests, for example by a business area or a testing type. If you don't include your marks in this list, pytest will give you a warning until they have either been added here or programmatically within the code.
37
38
38
39
Any configuration you want to apply to all of your test executions should be placed in this file where possible, to ensure easy maintenance.
0 commit comments