Skip to content

Commit 5c62280

Browse files
committed
fix test verify environment
1 parent 449ad62 commit 5c62280

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

tests/test_verify_environment.py

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
import sys
3-
from django import VERSION
3+
import django
44
from django.db import connection
55
import typing as t
66
from django.test import TestCase
@@ -44,11 +44,14 @@ def test(self):
4444
f"{expected_python}"
4545
)
4646

47-
expected_django = tuple(int(v) for v in expected_django.split(".") if v)
48-
assert VERSION[: len(expected_django)] == expected_django, (
49-
f"Django Version Mismatch: {VERSION[: len(expected_django)]} != "
50-
f"{expected_django}"
51-
)
47+
try:
48+
expected_django = tuple(int(v) for v in expected_django.split(".") if v)
49+
assert django.VERSION[: len(expected_django)] == expected_django, (
50+
f"Django Version Mismatch: {django.VERSION[: len(expected_django)]} != "
51+
f"{expected_django}"
52+
)
53+
except ValueError:
54+
assert expected_django == django.__version__
5255

5356
if expected_db_ver:
5457
if rdbms == "postgres":

0 commit comments

Comments
 (0)