Configuration
As of now Pythoscope doesn't have any configuration mechanism. This page tracks different variables that may be part of the configuration, once implemented.
- new_test_modules_name_template
- A string with a placeholder. Shows a way test modules created by Pythoscope should be named. Default: test_%s.py
- put_test_classes_with_test_modules
- Boolean. Defines whether new test classes should be put inside application modules or in separate test modules. Default is False.
- generate_tests_for_inner_classes
- Boolean. Defines whether Pythoscope will generate tests for inner classes. Default is False.
- template
- A string. Name of the template to use for new test cases. Default is "unittest".
- new_tests_directory
- A path relative to project's directory pointing to a directory where new test modules should be put. Default is "tests".
- separate_test_directory_for_each_package
- See Support separate test directories for each package blueprint.
Implementation tips
Once we're forced to implement this, some references may come in handy:
- 20 minute talk on A Configuration Comparison in Python
- ConfigObj
page revision: 3, last edited: 19 Apr 2009 21:36