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
8c86ecda
Kaydet (Commit)
8c86ecda
authored
Haz 02, 2011
tarafından
Éric Araujo
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix format of warnings from the packaging check command
üst
78af7d83
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
check.py
Lib/packaging/command/check.py
+1
-1
test_command_check.py
Lib/packaging/tests/test_command_check.py
+11
-0
No files found.
Lib/packaging/command/check.py
Dosyayı görüntüle @
8c86ecda
...
...
@@ -32,7 +32,7 @@ class check(Command):
# XXX we could use a special handler for this, but would need to test
# if it works even if the logger has a too high level
self
.
_warnings
.
append
((
msg
,
args
))
return
logger
.
warning
(
self
.
get_command_name
()
+
msg
,
*
args
)
return
logger
.
warning
(
'
%
s:
%
s'
%
(
self
.
get_command_name
(),
msg
)
,
*
args
)
def
run
(
self
):
"""Runs the command."""
...
...
Lib/packaging/tests/test_command_check.py
Dosyayı görüntüle @
8c86ecda
...
...
@@ -124,6 +124,17 @@ class CheckTestCase(support.LoggingCatcher,
cmd
.
check_hooks_resolvable
()
self
.
assertEqual
(
len
(
self
.
get_logs
(
logging
.
WARNING
)),
1
)
def
test_warn
(
self
):
_
,
dist
=
self
.
create_dist
()
cmd
=
check
(
dist
)
self
.
assertEqual
([],
self
.
get_logs
())
cmd
.
warn
(
'hello'
)
self
.
assertEqual
([
'check: hello'
],
self
.
get_logs
())
cmd
.
warn
(
'hello
%
s'
,
'world'
)
self
.
assertEqual
([
'check: hello world'
],
self
.
get_logs
())
cmd
.
warn
(
'hello
%
s
%
s'
,
'beautiful'
,
'world'
)
self
.
assertEqual
([
'check: hello beautiful world'
],
self
.
get_logs
())
def
test_suite
():
return
unittest
.
makeSuite
(
CheckTestCase
)
...
...
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