2012-11-06 71 views
0

我想在Django項目中更好地組織我的硒測試。組織Django中的硒測試

我有一個文件夾project/app/selenium_tests/其中我放入__init__.pytests.py其中包含我的硒測試。在__init__.py我喜歡進口的測試,以便:

from tests import * 

但是當我做./manage.py test app.selenium_tests我得到:

ValueError: Test label 'app.selenium_tests' does not refer to a test 

什麼可能我在這裏失去了?我甚至在selenium_test包中添加了models.py,但沒有任何喜悅。

任何幫助非常感謝。

+0

我猜它是Django的硒測試跑步者的發現細節,嘗試看看它的代碼。 – Kee

回答

0

您需要將文件夾selenium_tests放在應用程序的tests目錄下,否則默認的Django測試運行器將無法找到它。

所以,移動這個project/app/selenium_tests/project/app/tests/selenium_tests/