尝试使用并行测试时,PyTest导入错误

时间:2018-12-14 14:02:21

标签: python selenium webdriver pytest python-unittest

我正在尝试使用PyTest进行并行测试。我也使用unittest并坚持到页面对象模式。我一直遇到的错误是:

ImportError while importing test module 'C:\Users\%username%\Desktop\Automation\Test\Scripts\test_AccountCreation.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
Test\Scripts\test_ArtistAccountCreation.py:1: in <module>
    from Automation.Test.TestBase.EnvironmentSetUp import *
E   ModuleNotFoundError: No module named 'Automation'

缺少的模块“自动化”是用于保存项目文件的文件夹名称。

from Automation.Test.TestBase.EnvironmentSetUp import *

这是测试脚本的导入行,文件中有一个包含SetUp和tearDown模块的类。

0 个答案:

没有答案