We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dab1961 commit 1159d10Copy full SHA for 1159d10
runtests.py
@@ -1,6 +1,7 @@
1
#!/usr/bin/env python
2
import logging
3
import os
4
+import platform
5
import sys
6
from os.path import dirname, abspath
7
from optparse import OptionParser
@@ -15,7 +16,10 @@
15
16
if not settings.configured:
17
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
18
19
+print('\n\n')
20
+print(platform.python_version())
21
print('Django {}'.format(django.VERSION))
22
23
24
if django.VERSION >= (1, 7):
25
django.setup()
0 commit comments