mirror of
https://github.com/jazzband/django-constance.git
synced 2026-04-12 19:21:02 +00:00
15 lines
279 B
Python
Executable file
15 lines
279 B
Python
Executable file
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
from django.core.management import call_command
|
|
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'tests.settings'
|
|
|
|
|
|
def main():
|
|
result = call_command('test', 'tests', verbosity=2)
|
|
sys.exit(result)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|