Updated `setup.py` and `__main__.py` templates for test projects to allow commands to be run without `python -m` when installed. Also added brief documentation on using `virtualenv` with test projects.
Details
Project templates
* Added `main()` method to `__main__.py` template. Essentially just extracted the call to `test_module.main()` to a method to allow console script entry points
* Updated `setup.py` to include `console_scripts` entry point to new main method
* Updated `.gitignore` template to include `venv/` directory
Additional Comments
Since the command line entry point required changes to project templates, older projects won't support this by default. The following changes can be made to allow test projects to be called directly from the command line (replacing `<test_package>` with actual package name):
`setup.py`:
python
...
setup(
...
entry_points={
'console_scripts': [
'<test_package>=<test_package>.__main__:main',
]
},
...
)
`<test_package>/__main__.py`:
python
...
def main():
test_module.main(tests, config, __package__)
if __name__ == '__main__':
test_module.main(tests, config, __package__)
main()