I'm looking at 0.91 for BLFS [http://www.linuxfromscratch.org/blfs/] and we usually tell people how to run tests, if they wish to. I've now installed lxml and numpy, but I'm getting 5 failures.
First question: do you intend that a builder should run these tests, or are they, like some packages, there to be run before the release ? I ask that because the only things that seem to run without the Python modules are the cxxtests which XFAIL, and intltool-update and check_markup with the translations.
With the Python modules, I'm getting the usual impenetrable tracebacks for the failures -
Testing gimp_xcf
test_empty_file (__main__.GimpXCFBasicTest) ... Unable to open object member file: svg/empty-SVG.svg ERROR test_empty_layer_file (__main__.GimpXCFBasicTest) ... Unable to open object member file: svg/default-inkscape-SVG.svg ERROR test_expected_file (__main__.GimpXCFBasicTest) ... Unable to open object member file: svg/multilayered-test.svg ERROR
====================================================================== ERROR: test_empty_file (__main__.GimpXCFBasicTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "gimp_xcf.test.py", line 37, in test_empty_file e.affect(args, False) File "../inkex.py", line 264, in affect self.parse() File "../inkex.py", line 179, in parse sys.exit() SystemExit
====================================================================== ERROR: test_empty_layer_file (__main__.GimpXCFBasicTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "gimp_xcf.test.py", line 47, in test_empty_layer_file e.affect(args, False) File "../inkex.py", line 264, in affect self.parse() File "../inkex.py", line 179, in parse sys.exit() SystemExit
====================================================================== ERROR: test_expected_file (__main__.GimpXCFBasicTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "gimp_xcf.test.py", line 28, in test_expected_file e.affect(args, False) File "../inkex.py", line 264, in affect self.parse() File "../inkex.py", line 179, in parse sys.exit() SystemExit
---------------------------------------------------------------------- Ran 3 tests in 0.001s
FAILED (errors=3)
and a bit later
Testing markers_strokepaint
test_empty_defs (__main__.StrokeColorBasicTest) ... Unable to open object member file: svg/default-plain-SVG.svg ERROR test_no_defs (__main__.StrokeColorBasicTest) ... Unable to open object member file: svg/empty-SVG.svg ERROR
====================================================================== ERROR: test_empty_defs (__main__.StrokeColorBasicTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "markers_strokepaint.test.py", line 31, in test_empty_defs e.affect(args, False) File "../inkex.py", line 264, in affect self.parse() File "../inkex.py", line 179, in parse sys.exit() SystemExit
====================================================================== ERROR: test_no_defs (__main__.StrokeColorBasicTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "markers_strokepaint.test.py", line 25, in test_no_defs e.affect(args, False) File "../inkex.py", line 264, in affect self.parse() File "../inkex.py", line 179, in parse sys.exit() SystemExit
---------------------------------------------------------------------- Ran 2 tests in 0.002s
FAILED (errors=2)
ĸen