Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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
cpython
Commits
57648308
Kaydet (Commit)
57648308
authored
Mar 24, 2011
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#11093: make NOTTESTS empty by renaming confusingly named files in test dir.
Patch by Sandro Tosi.
üst
b588f8dd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
10 deletions
+7
-10
future_test1.py
Lib/test/future_test1.py
+0
-0
future_test2.py
Lib/test/future_test2.py
+0
-0
regrtest.py
Lib/test/regrtest.py
+1
-4
test_future.py
Lib/test/test_future.py
+6
-6
No files found.
Lib/test/
test_future
1.py
→
Lib/test/
future_test
1.py
Dosyayı görüntüle @
57648308
File moved
Lib/test/
test_future
2.py
→
Lib/test/
future_test
2.py
Dosyayı görüntüle @
57648308
File moved
Lib/test/regrtest.py
Dosyayı görüntüle @
57648308
...
...
@@ -743,10 +743,7 @@ STDTESTS = [
]
# set of tests that we don't want to be executed when using regrtest
NOTTESTS
=
{
'test_future1'
,
'test_future2'
,
}
NOTTESTS
=
set
()
def
findtests
(
testdir
=
None
,
stdtests
=
STDTESTS
,
nottests
=
NOTTESTS
):
"""Return a list of all applicable test modules."""
...
...
Lib/test/test_future.py
Dosyayı görüntüle @
57648308
...
...
@@ -13,14 +13,14 @@ def get_error_location(msg):
class
FutureTest
(
unittest
.
TestCase
):
def
test_future1
(
self
):
support
.
unload
(
'
test_future
1'
)
from
test
import
test_future
1
self
.
assertEqual
(
test_future
1
.
result
,
6
)
support
.
unload
(
'
future_test
1'
)
from
test
import
future_test
1
self
.
assertEqual
(
future_test
1
.
result
,
6
)
def
test_future2
(
self
):
support
.
unload
(
'
test_future
2'
)
from
test
import
test_future
2
self
.
assertEqual
(
test_future
2
.
result
,
6
)
support
.
unload
(
'
future_test
2'
)
from
test
import
future_test
2
self
.
assertEqual
(
future_test
2
.
result
,
6
)
def
test_future3
(
self
):
support
.
unload
(
'test_future3'
)
...
...
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