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/contributor/CONTRIBUTING.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -139,19 +139,19 @@ Here are some advanced commands to debug test failures and fix issues.
139
139
First, we have three sets of unit tests in the base repository:
140
140
1. Our own Python-bases unit tests
141
141
2. JUnit tests
142
-
3. Python's standard library tests
142
+
3. Python's standard library tests, we often refer to those as tagged tests
143
143
144
144
To run the first, you can use this command:
145
145
146
146
```bash
147
147
mx python-gate --tags python-unittest
148
148
```
149
149
150
-
If some of the tests fail, you can re-run just a single test like this, substituting TEST-PATTERN (and possibly the file glob on the third line) with the testyou want to run.
150
+
If some of the tests fail, you can re-run just a single test like this, substituting TEST-SELECTOR with the test you want to run. You can use the whole failed testname including the path as the selector.
151
151
Note that you can insert `-d` to debug on the Java level or use `--inspect` to debug in the Chrome debugger.
0 commit comments