12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #!/bin/bash
- #
- # Usage : ./runtest [OPTIONS] [test_module[.test_class][ test_module2[.test_class2]...]
- #########
- #
- # Options list :
- ################
- #
- # -b, --buffer
- #
- # The standard output and standard error streams are buffered during the test run. Output during a passing test is discarded. Output is echoed normally on test fail or error and is added to the failure messages.
- #
- # -c, --catch
- #
- # Control-C during the test run waits for the current test to end and then reports all the results so far. A second control-C raises the normal KeyboardInterrupt exception.
- #
- #
- # -f, --failfast
- #
- # Stop the test run on the first error or failure.
- #
- # -h, --help
- #
- # Get some help
- #
- # -v, --verbose
- #
- # higher verbosity
- #
- # Examples :
- ############
- #
- # Running all discoverables tests :
- # ./runtest
- #
- # Running only Em test about component object (only tests about the __init__ and modify_rank methods) with higher verbosity and failfast :
- # ./runtest -fv EditorialModel.test.test_component.TestInit EditorialModel.test.test_component.TestModifyRank
- #
- #
- # Running only Em tests
- # ./runtest discover EditorialModel
- #
- # More details :
- ################
- #
- # https://docs.python.org/3.4/library/unittest.html
- #
-
-
- export DJANGO_SETTINGS_MODULE="Lodel.settings"
-
- python -m unittest $@
|