Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upHow to run selected tests? #76
Comments
|
There are no options to run only a specific testcase or specific test in a testcase, but here is a#n option to run only a selected file. |
|
This option would be setting the |
|
Yap, you could use that option or the command |
For example:
a_tests.py
b_tests.py
Can I set a setting like:
{ "tests_dir" : "package_manager", "pattern" : "*tests.py", "async": false, "deferred": true, "verbosity": 1, "capture_console": false, "reload_package_on_testing": true, "show_reload_progress": true, "output": null, "selected_test": [ "test_b_test", "test_c_test", ] }If
selected_testsis empty or non existent, then all tests are run. Otherwise, only the listed tests are run.