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: README.md
+25-9Lines changed: 25 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,11 +20,11 @@ PythonTest runs python tests and shows the output in an output panel. In the pan
20
20
21
21
Tests may be run individually or in groups.
22
22
23
-
To run individual tests, in a python unit test module, put a caret in some tests and press "ctrl-c,." to run them. Every test method (or test function) containing a caret point will be run, and only those.
23
+
To run individual tests, in a python unit test module, put a caret in some tests and press <kbd>Ctrl</kbd>-<kbd>c</kbd>,<kbd>.</kbd> to run them. Every test method (or test function) containing a caret point will be run, and only those.
24
24
25
-
To run all of the tests in a module, ensure the caret is outside of any test method or function and press "ctrl-c,."
25
+
To run all of the tests in a module, ensure the caret is outside of any test method or function and press <kbd>Ctrl</kbd>-<kbd>c</kbd>,<kbd>.</kbd>
26
26
27
-
To run all of the tests in a project, press "ctrl-c,t" while viewing any python source file.
27
+
To run all of the tests in a project, press <kbd>Ctrl</kbd>-<kbd>c</kbd>,<kbd>t</kbd> while viewing any python source file.
28
28
29
29
Settings
30
30
--------
@@ -33,16 +33,32 @@ In the global section of a project file, PythonTest respects the `python_interpr
33
33
34
34
You can customize the plugin's behavior by adding a `python_test` section to a project file. In that section, the following settings may be specified:
35
35
36
-
*`command`: "nose2" (default) or the name of or path to a test comman. The test command is executed in a shell, so it may include arguments, for instance `python ./manage.py test` is a valid `command` setting.
36
+
*`command`: "nose2" (default) or the name of or path to a test comman. The test command is executed in a shell, so it may include arguments, for instance `python ./manage.py test` is a valid `command` setting.
37
37
38
-
*`ignore_interpreter`: False (default). Set to True to ignore the `python_interpreter`
38
+
*`ignore_interpreter`: False (default). Set to True to ignore the `python_interpreter`
39
39
setting.
40
40
41
-
*`working_dir`: project root (default) or the path to the directory where test commands should be executed
41
+
*`working_dir`: project root (default) or the path to the directory where test commands should be executed
42
42
43
-
*`quiet`: True (default) to hide test command details in output
43
+
*`quiet`: True (default) to hide test command details in output
44
44
45
-
*`color_scheme`: "light" (default) or "dark" or a `.tmTheme` or `.hidden-tmTheme` filename
45
+
*`color_scheme`: "light" (default) or "dark" or a `.tmTheme` or `.hidden-tmTheme` filename
46
46
47
-
*`syntax`: "unittest" (default) or Specify a `.tmLanguage` file to set the syntax highlighting language for test output
47
+
*`syntax`: "unittest" (default) or Specify a `.tmLanguage` file to set the syntax highlighting language for test output
0 commit comments