From ce0b0d44224e61007a1b1538094591ecfba0ebaf Mon Sep 17 00:00:00 2001 From: Luo Tao Date: Mon, 7 Nov 2016 19:48:58 +0800 Subject: [PATCH 1/3] add python-related unittest problem in faq document --- doc_cn/faq/index.rst | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/doc_cn/faq/index.rst b/doc_cn/faq/index.rst index db28b4436fe5e..3826d6f8d8f24 100644 --- a/doc_cn/faq/index.rst +++ b/doc_cn/faq/index.rst @@ -177,3 +177,33 @@ PaddlePaddle的参数使用名字 :code:`name` 作为参数的ID,相同名字 pip install --upgrade pip +8. test_PyDataProvider等部分python相关单测过不了 +------------------------------------------------- + +如果出现以下单测过不了的情况: + +.. code-block:: bash + + 24 - test_PyDataProvider (Failed) + 26 - test_RecurrentGradientMachine (Failed) + 27 - test_NetworkCompare (Failed) + 28 - test_PyDataProvider2 (Failed) + 32 - test_Prediction (Failed) + 33 - test_Compare (Failed) + 34 - test_Trainer (Failed) + 35 - test_TrainerOnePass (Failed) + 36 - test_CompareTwoNets (Failed) + 37 - test_CompareTwoOpts (Failed) + 38 - test_CompareSparse (Failed) + 39 - test_recurrent_machine_generation (Failed) + 40 - test_PyDataProviderWrapper (Failed) + 41 - test_config_parser (Failed) + 42 - test_swig_api (Failed) + 43 - layers_test (Failed) + +解决办法是:先卸载paddle包 :code:`pip uninstall paddle`,再重新安装 :code:`make install`。 + +原因是单元测试使用了一个旧版本的python包,而没有测试到代码中实际修改的python包。即单测需要一个干净的环境(unittest need a clean environment): + +* 如果paddle包已经在python的site-packages里面了,那么单元测试时使用的paddle包,就是site-packages里面的python包,而不是源码目录里 :code:`/python` 目录下的python包。 +* 即便设置了 :code:`PYTHONPATH` 到 :code:`/python` 也没用,因为python的搜索路径是优先已经安装的python包。 \ No newline at end of file From e30f6384472923e77619b5bb78f83f3f9822b626 Mon Sep 17 00:00:00 2001 From: Luo Tao Date: Tue, 8 Nov 2016 10:58:27 +0800 Subject: [PATCH 2/3] follow comments --- doc_cn/faq/index.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc_cn/faq/index.rst b/doc_cn/faq/index.rst index 3826d6f8d8f24..90a65a30fdc94 100644 --- a/doc_cn/faq/index.rst +++ b/doc_cn/faq/index.rst @@ -177,10 +177,10 @@ PaddlePaddle的参数使用名字 :code:`name` 作为参数的ID,相同名字 pip install --upgrade pip -8. test_PyDataProvider等部分python相关单测过不了 -------------------------------------------------- +8. python相关的单元测试都过不了 +-------------------------------- -如果出现以下单测过不了的情况: +如果出现以下python相关的单元测试都过不了的情况: .. code-block:: bash @@ -201,9 +201,9 @@ PaddlePaddle的参数使用名字 :code:`name` 作为参数的ID,相同名字 42 - test_swig_api (Failed) 43 - layers_test (Failed) -解决办法是:先卸载paddle包 :code:`pip uninstall paddle`,再重新安装 :code:`make install`。 +解决办法是:卸载paddle包 :code:`pip uninstall paddle`。 -原因是单元测试使用了一个旧版本的python包,而没有测试到代码中实际修改的python包。即单测需要一个干净的环境(unittest need a clean environment): +原因是:单元测试使用了一个旧版本的python包,而没有测试到代码中实际修改的python包。即单元测试需要一个干净的环境(unittest need a clean environment): * 如果paddle包已经在python的site-packages里面了,那么单元测试时使用的paddle包,就是site-packages里面的python包,而不是源码目录里 :code:`/python` 目录下的python包。 * 即便设置了 :code:`PYTHONPATH` 到 :code:`/python` 也没用,因为python的搜索路径是优先已经安装的python包。 \ No newline at end of file From 10e16c0171e9b2789614e48042703561b027e06f Mon Sep 17 00:00:00 2001 From: Luo Tao Date: Tue, 8 Nov 2016 11:40:17 +0800 Subject: [PATCH 3/3] follow comments --- doc_cn/faq/index.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/doc_cn/faq/index.rst b/doc_cn/faq/index.rst index 90a65a30fdc94..3eb0e10ae2228 100644 --- a/doc_cn/faq/index.rst +++ b/doc_cn/faq/index.rst @@ -201,9 +201,16 @@ PaddlePaddle的参数使用名字 :code:`name` 作为参数的ID,相同名字 42 - test_swig_api (Failed) 43 - layers_test (Failed) +并且查询PaddlePaddle单元测试的日志,提示: + +.. code-block:: bash + + paddle package is already in your PYTHONPATH. But unittest need a clean environment. + Please uninstall paddle package before start unittest. Try to 'pip uninstall paddle'. + 解决办法是:卸载paddle包 :code:`pip uninstall paddle`。 -原因是:单元测试使用了一个旧版本的python包,而没有测试到代码中实际修改的python包。即单元测试需要一个干净的环境(unittest need a clean environment): +原因是:单元测试使用了一个旧版本的python包,而没有测试到代码中实际修改的python包。即单元测试需要一个干净的环境: * 如果paddle包已经在python的site-packages里面了,那么单元测试时使用的paddle包,就是site-packages里面的python包,而不是源码目录里 :code:`/python` 目录下的python包。 * 即便设置了 :code:`PYTHONPATH` 到 :code:`/python` 也没用,因为python的搜索路径是优先已经安装的python包。 \ No newline at end of file