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
199a02d1
Kaydet (Commit)
199a02d1
authored
Tem 26, 2015
tarafından
Joseph Gordon
Kaydeden (comit)
Tim Graham
Tem 27, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #25110 -- Fixed a test_runner test isolation regression.
Thanks claudep for the patch.
üst
7c642caf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
test_discover_runner.py
tests/test_runner/test_discover_runner.py
+5
-3
No files found.
tests/test_runner/test_discover_runner.py
Dosyayı görüntüle @
199a02d1
...
...
@@ -121,9 +121,11 @@ class DiscoverRunnerTest(TestCase):
"""
Tests shouldn't be discovered twice when discovering on overlapping paths.
"""
single
=
DiscoverRunner
()
.
build_suite
([
"gis_tests"
])
.
countTestCases
()
dups
=
DiscoverRunner
()
.
build_suite
(
[
"gis_tests"
,
"gis_tests.geo3d"
])
.
countTestCases
()
base_app
=
'gis_tests'
sub_app
=
'gis_tests.geo3d'
with
self
.
modify_settings
(
INSTALLED_APPS
=
{
'append'
:
sub_app
}):
single
=
DiscoverRunner
()
.
build_suite
([
base_app
])
.
countTestCases
()
dups
=
DiscoverRunner
()
.
build_suite
([
base_app
,
sub_app
])
.
countTestCases
()
self
.
assertEqual
(
single
,
dups
)
def
test_reverse
(
self
):
...
...
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