Skip to content

Commit

Permalink
wip2
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Nov 11, 2023
1 parent 1e9393a commit 0bf222d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -524,10 +524,10 @@ def test_file(self, **kwargs):
version = [int(x) for x in django.get_version().split('.')][:2]
if version == [1, 7]:
django_folder = 'my_django_proj_17'
elif version in ([2, 1], [2, 2], [3, 0], [3, 1], [3, 2], [4, 0], [4, 1]):
elif version in ([2, 1], [2, 2], [3, 0], [3, 1], [3, 2], [4, 0], [4, 1], [4, 2]):
django_folder = 'my_django_proj_21'
else:
raise AssertionError('Can only check django 1.7 -> 4.1 right now. Found: %s' % (version,))
raise AssertionError('Can only check django 1.7 -> 4.2 right now. Found: %s' % (version,))

WriterThread.DJANGO_FOLDER = django_folder
for key, value in kwargs.items():
Expand Down

0 comments on commit 0bf222d

Please sign in to comment.