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
48e7787d
Kaydet (Commit)
48e7787d
authored
Eyl 05, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed RemovedInDjango110Warning.
üst
2ccfac1a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
11 deletions
+5
-11
deprecation.py
django/utils/deprecation.py
+1
-5
runtests.py
tests/runtests.py
+1
-4
tests.py
tests/test_runner/tests.py
+3
-2
No files found.
django/utils/deprecation.py
Dosyayı görüntüle @
48e7787d
...
...
@@ -8,11 +8,7 @@ class RemovedInDjango20Warning(PendingDeprecationWarning):
pass
class
RemovedInDjango110Warning
(
DeprecationWarning
):
pass
RemovedInNextVersionWarning
=
RemovedInDjango110Warning
RemovedInNextVersionWarning
=
DeprecationWarning
class
warn_about_renamed_method
(
object
):
...
...
tests/runtests.py
Dosyayı görüntüle @
48e7787d
...
...
@@ -19,12 +19,9 @@ from django.test.runner import default_test_processes
from
django.test.utils
import
get_runner
from
django.utils
import
six
from
django.utils._os
import
upath
from
django.utils.deprecation
import
(
RemovedInDjango20Warning
,
RemovedInDjango110Warning
,
)
from
django.utils.deprecation
import
RemovedInDjango20Warning
from
django.utils.log
import
DEFAULT_LOGGING
warnings
.
simplefilter
(
"error"
,
RemovedInDjango110Warning
)
warnings
.
simplefilter
(
"error"
,
RemovedInDjango20Warning
)
RUNTESTS_DIR
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
upath
(
__file__
)))
...
...
tests/test_runner/tests.py
Dosyayı görüntüle @
48e7787d
...
...
@@ -352,8 +352,9 @@ class DeprecationDisplayTest(AdminScriptTestCase):
args
=
[
'test'
,
'--settings=test_project.settings'
,
'test_runner_deprecation_app'
]
out
,
err
=
self
.
run_django_admin
(
args
)
self
.
assertIn
(
"Ran 1 test"
,
force_text
(
err
))
six
.
assertRegex
(
self
,
err
,
r"RemovedInDjango\d+Warning: warning from test"
)
six
.
assertRegex
(
self
,
err
,
r"RemovedInDjango\d+Warning: module-level warning from deprecation_app"
)
# change "Deprecation" to "RemovedInDjango\d+" in Django 1.11.
six
.
assertRegex
(
self
,
err
,
r"DeprecationWarning: warning from test"
)
six
.
assertRegex
(
self
,
err
,
r"DeprecationWarning: module-level warning from deprecation_app"
)
def
test_runner_deprecation_verbosity_zero
(
self
):
args
=
[
'test'
,
'--settings=test_project.settings'
,
'--verbosity=0'
,
'test_runner_deprecation_app'
]
...
...
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