matcatc / Test_Parser

parses and displays the output from test logs
http://matcatc.github.com/Test_Parser
GNU General Public License v3.0
1 stars 0 forks source link

Python scripts #21

Closed matcatc closed 14 years ago

matcatc commented 14 years ago

make main python modules script safe.

i.e: add following to all files that could be run from command line #!/usr/bin/python3

Might as well make test files individually runable. That way someone could run an individual test suite. But we're going to have to setup the test file's main() as well. So it knows how to run all the tests.

matcatc commented 14 years ago

added script lines to main and test_runner.

matcatc commented 14 years ago

As far as I know, its not possible to make the test files individually runnable. The issue is that the package imports requires that the python interpreter be run from the highest package.

If we get to the point that we want to limit the number of tests run, we can make a new test_runner or change the current one to be more configurable.

Regardless, I don't really see the need right now.