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
cb18d077
Kaydet (Commit)
cb18d077
authored
Eyl 02, 2011
tarafından
Éric Araujo
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Enable catching WARN-level logging messages in distutils' test_sdist
üst
b71c15d4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
test_sdist.py
Lib/distutils/tests/test_sdist.py
+4
-5
No files found.
Lib/distutils/tests/test_sdist.py
Dosyayı görüntüle @
cb18d077
...
...
@@ -85,9 +85,6 @@ class SDistTestCase(PyPIRCCommandTestCase):
dist
.
include_package_data
=
True
cmd
=
sdist
(
dist
)
cmd
.
dist_dir
=
'dist'
def
_warn
(
*
args
):
pass
cmd
.
warn
=
_warn
return
dist
,
cmd
@unittest.skipUnless
(
zlib
,
"requires zlib"
)
...
...
@@ -242,7 +239,8 @@ class SDistTestCase(PyPIRCCommandTestCase):
# with the `check` subcommand
cmd
.
ensure_finalized
()
cmd
.
run
()
warnings
=
self
.
get_logs
(
WARN
)
warnings
=
[
msg
for
msg
in
self
.
get_logs
(
WARN
)
if
msg
.
startswith
(
'warning: check:'
)]
self
.
assertEqual
(
len
(
warnings
),
2
)
# trying with a complete set of metadata
...
...
@@ -251,7 +249,8 @@ class SDistTestCase(PyPIRCCommandTestCase):
cmd
.
ensure_finalized
()
cmd
.
metadata_check
=
0
cmd
.
run
()
warnings
=
self
.
get_logs
(
WARN
)
warnings
=
[
msg
for
msg
in
self
.
get_logs
(
WARN
)
if
msg
.
startswith
(
'warning: check:'
)]
self
.
assertEqual
(
len
(
warnings
),
0
)
def
test_check_metadata_deprecated
(
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