Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
832b4a57
Kaydet (Commit)
832b4a57
authored
May 08, 2013
tarafından
Aymeric Augustin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Marked a test as an expected failure on MySQL and Python 3.2.
This test hits a bug in current ports of MySQLdb.
üst
ea3a378c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
tests.py
tests/model_regress/tests.py
+8
-1
No files found.
tests/model_regress/tests.py
Dosyayı görüntüle @
832b4a57
...
...
@@ -2,12 +2,14 @@ from __future__ import absolute_import, unicode_literals
import
datetime
from
operator
import
attrgetter
import
sys
from
django.core.exceptions
import
ValidationError
from
django.test
import
TestCase
,
skipUnlessDBFeature
from
django.utils
import
six
from
django.utils
import
tzinfo
from
django.db
import
router
from
django.utils
import
unittest
from
django.db
import
connection
,
router
from
django.db.models.sql
import
InsertQuery
from
.models
import
(
Worker
,
Article
,
Party
,
Event
,
Department
,
...
...
@@ -131,6 +133,11 @@ class ModelTests(TestCase):
attrgetter
(
"when"
)
)
if
(
3
,)
<=
sys
.
version_info
<
(
3
,
3
)
and
connection
.
vendor
==
'mysql'
:
# In Python < 3.3, datetime.strftime raises an exception for years
# below 1000, and existing MySQL DB-API drivers hit this problem.
test_date_lookup
=
unittest
.
expectedFailure
(
test_date_lookup
)
def
test_date_filter_null
(
self
):
# Date filtering was failing with NULL date values in SQLite
# (regression test for #3501, amongst other things).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment