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
305c6b8f
Kaydet (Commit)
305c6b8f
authored
Kas 03, 2009
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Since time.xmlrpc.com is unreliable, add another test to test_xmlrpc_net
üst
f964ac25
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
test_xmlrpc_net.py
Lib/test/test_xmlrpc_net.py
+17
-2
No files found.
Lib/test/test_xmlrpc_net.py
Dosyayı görüntüle @
305c6b8f
#!/usr/bin/env python
import
collections
import
errno
import
socket
import
sys
...
...
@@ -17,8 +18,7 @@ class CurrentTimeTest(unittest.TestCase):
try
:
t0
=
server
.
currentTime
.
getCurrentTime
()
except
socket
.
error
as
e
:
print
(
" test_current_time: skipping test, got error:
%
s"
%
e
,
file
=
sys
.
stderr
)
self
.
skipTest
(
"network error:
%
s"
%
e
)
return
# Perform a minimal sanity check on the result, just to be sure
...
...
@@ -35,6 +35,21 @@ class CurrentTimeTest(unittest.TestCase):
# time on the server should not be too big.
self
.
assertTrue
(
delta
.
days
<=
1
)
def
test_python_builders
(
self
):
# Get the list of builders from the XMLRPC buildbot interface at
# python.org.
server
=
xmlrpclib
.
ServerProxy
(
"http://www.python.org/dev/buildbot/all/xmlrpc/"
)
try
:
builders
=
server
.
getAllBuilders
()
except
socket
.
error
as
e
:
self
.
skipTest
(
"network error:
%
s"
%
e
)
return
# Perform a minimal sanity check on the result, just to be sure
# the request means what we think it means.
self
.
assertIsInstance
(
builders
,
collections
.
Sequence
)
self
.
assertTrue
([
x
for
x
in
builders
if
"trunk"
in
x
],
builders
)
def
test_main
():
support
.
requires
(
"network"
)
...
...
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