标签: python eclipse code-coverage pydev
我将python模块放在文件夹A中,但是我在文件夹B中进行了测试。 在Eclipse Pydev中使用coverage时,如何使此设置有效?
答案 0 :(得分:1)
如果你想让python编译器知道它们在哪里,你只需将它们的路径添加到sys.path,这就是你要找的东西吗?
link to sys.path in python documentation
修改强> 尝试使用像
sys.path.append(r"C:\path\to\tests")