Skip to content

AutoTestClass/djangotutorial

Repository files navigation

djangotutorial

django 官方示例

https://docs.djangoproject.com/zh-hans/5.1/intro/

运行应用

python manage.py runserver

Django测试

应用测试:https://docs.djangoproject.com/zh-hans/5.1/intro/tutorial05/

测试工具:https://docs.djangoproject.com/zh-hans/5.1/topics/testing/

运行所有用例:

python manage.py test

运行polls应用下的所有用例:

python manage.py test polls

运行polls应用下的tests目录用例:

python manage.py test polls.tests

运行polls应用下的test_model.py文件中的 QuestionModelTests 测试类:

python manage.py test polls.tests.test_model.QuestionModelTests

Django调试工具

Django性能分析

基准测试

覆盖率统计

API开发

缓存框架

https://docs.djangoproject.com/zh-hans/5.1/topics/cache/

django-db-performance

这个库可以帮助你监控 Django 的数据库性能,它会记录查询的执行时间,并报告在基准测试过程中数据库的性能瓶颈

About

测试开发学习的Web项目

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published