python - django项目中如何运行test模块?
PHPz
PHPz 2017-04-17 18:01:41
0
3
357

一般django项目中都有test模块
如何运行test模块

PHPz
PHPz

学习是最好的投资!

reply all(3)
刘奇

Can you give me the tree directory of the project? Is this a unit test or an integration test?
You can try:

  • python test-client.py

  • python test-server.py

  • python manage.py test

Error python: can't open file 'manage.py': [Errno 2] No such file or directory
You have to switch to the root directory of the project, which is the directory with manage.py.

小葫芦
python manage.py test <app>

Please replace <app> with the app name in your Django. Generally, if the directory name is polls, then it is

python manage.py test polls
左手右手慢动作

Note that the file name test-server.py is not standardized!

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template