Files
django-q2/django_q/tests/test_commands.py
Ilan Steemers 15155c7a99 Build improvements (#569)
* Black linting

* Adding Black to dev dependencies and upping minimal python to 3.6.2 for compatibility

* Updating packages

* Removing pip-tools input and exporting requirements with poetry

* Deleting old setup files and test runner

* Trying 1.3.7

* Looser extras requirements to prevent conflicts

* Sorted imports with isort

* Added iSort to dev dependencies

* Fixes localtime for naive setups
2021-05-30 17:10:07 +02:00

26 lines
531 B
Python

import pytest
from django.core.management import call_command
@pytest.mark.django_db
def test_qcluster():
call_command("qcluster", run_once=True)
@pytest.mark.django_db
def test_qmonitor():
call_command("qmonitor", run_once=True)
@pytest.mark.django_db
def test_qinfo():
call_command("qinfo")
call_command("qinfo", config=True)
call_command("qinfo", ids=True)
@pytest.mark.django_db
def test_qmemory():
call_command("qmemory", run_once=True)
call_command("qmemory", workers=True, run_once=True)