https://github.com/cloudmercato/django-qos
https://github.com/cloudmercato/django-qos
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/cloudmercato/django-qos
- Owner: cloudmercato
- License: bsd-3-clause
- Created: 2023-07-10T15:22:19.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-13T15:03:57.000Z (over 1 year ago)
- Last Synced: 2025-01-22T15:47:54.160Z (over 1 year ago)
- Language: Python
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
==========
Django QoS
==========
Third app to run live tests on your projects
Install
=======
Install the package:::
pip install django-qos # not yet
pip install https://github.com/cloudmercato/django-qos/archive/refs/heads/master.zip
Add QoS to your project configuration:::
INSTALLED_APPS = [
...
'django_qos',
'django_qos.db',
]
Usage
=====
QoS is organized like `unittests`
1. You write a subclass of `django_qos.qos.QosTestCase`
2. You run `./manage.py qos`
Tests (dev)
===========
::
make test