Run [2024-11-20 04:57:58 UTC]: fail
running...
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\implicit.py", line 5, in __main__
Failed example:
from implicit_ext import *
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[0]>", line 1, in <module>
from implicit_ext import *
ImportError: DLL load failed while importing implicit_ext: The specified module could not be found.
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\implicit.py", line 6, in __main__
Failed example:
x_value(X(42))
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[1]>", line 1, in <module>
x_value(X(42))
^^^^^^^
NameError: name 'x_value' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\implicit.py", line 8, in __main__
Failed example:
x_value(42)
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[2]>", line 1, in <module>
x_value(42)
^^^^^^^
NameError: name 'x_value' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\implicit.py", line 10, in __main__
Failed example:
x = make_x(X(42))
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[3]>", line 1, in <module>
x = make_x(X(42))
^^^^^^
NameError: name 'make_x' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\implicit.py", line 11, in __main__
Failed example:
x.value()
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[4]>", line 1, in <module>
x.value()
^
NameError: name 'x' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\implicit.py", line 13, in __main__
Failed example:
try: make_x('fool')
except TypeError: pass
else: print('no error')
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[5]>", line 1, in <module>
try: make_x('fool')
^^^^^^
NameError: name 'make_x' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\implicit.py", line 17, in __main__
Failed example:
print(x_value.__doc__.splitlines()[1])
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[6]>", line 1, in <module>
print(x_value.__doc__.splitlines()[1])
^^^^^^^
NameError: name 'x_value' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\implicit.py", line 20, in __main__
Failed example:
print(make_x.__doc__.splitlines()[1])
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[7]>", line 1, in <module>
print(make_x.__doc__.splitlines()[1])
^^^^^^
NameError: name 'make_x' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\implicit.py", line 23, in __main__
Failed example:
print(X.value.__doc__.splitlines()[1])
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[8]>", line 1, in <module>
print(X.value.__doc__.splitlines()[1])
^
NameError: name 'X' is not defined
**********************************************************************
File "C:\teeks99-09\run\boost_root\libs\python\test\implicit.py", line 26, in __main__
Failed example:
print(X.set.__doc__.splitlines()[1])
Exception raised:
Traceback (most recent call last):
File "C:\Python311-64\Lib\doctest.py", line 1351, in __run
exec(compile(example.source, filename, "single",
File "<doctest __main__[9]>", line 1, in <module>
print(X.set.__doc__.splitlines()[1])
^
NameError: name 'X' is not defined
**********************************************************************
1 items had failures:
10 of 10 in __main__
***Test Failed*** 10 failures.
EXIT STATUS: 10