An open API service indexing awesome lists of open source software.

https://github.com/cloudmercato/django-qos


https://github.com/cloudmercato/django-qos

Last synced: about 1 year ago
JSON representation

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