diff options
author | David Ostrovsky <david@ostrovsky.org> | 2013-03-30 22:10:48 +0100 |
---|---|---|
committer | David Ostrovsky <David.Ostrovsky@gmx.de> | 2013-04-09 05:52:23 +0000 |
commit | 0e68bac85293e2d60fa6db3e46de8b74ab5d502b (patch) | |
tree | 17b4edeb6bfbce3724de003a87718d6b8f895642 /.gitignore | |
parent | d64b5cc1c3d232ba42479fe0a3c186ecabd25144 (diff) |
set up python unit test infrastructure
Extract boostraping code from convwatch.py to unotest.py. Use python builtin
unittest module as unit test framework. Specify the unit test modules in make
file. Another option would be to use discover mode of unittest module.
Add __pycache__ to global .gitignore to keep the source directory clean.
Another option would be to deliver the unit tests to workdir prior to test
execution.
Currently only system python3 is supported.
Change-Id: I2692817673f786e950e1176a17c7675f989755b6
Reviewed-on: https://gerrit.libreoffice.org/3214
Reviewed-by: David Ostrovsky <David.Ostrovsky@gmx.de>
Tested-by: David Ostrovsky <David.Ostrovsky@gmx.de>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 8e1dea9c88cf..e666c0ec53f9 100644 --- a/.gitignore +++ b/.gitignore @@ -75,5 +75,6 @@ /solenv/gdb/libreoffice/*.pyo /solenv/gdb/libreoffice/util/*.pyo /moz/zipped/*.zip +__pycache__ |