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
72b19772
Kaydet (Commit)
72b19772
authored
May 10, 2010
tarafından
Michael Foord
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Improving help message for python -m unittest. Issue 8303.
üst
638b8690
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
__main__.py
Lib/unittest/__main__.py
+1
-1
main.py
Lib/unittest/main.py
+6
-5
No files found.
Lib/unittest/__main__.py
Dosyayı görüntüle @
72b19772
...
...
@@ -2,7 +2,7 @@
import
sys
if
sys
.
argv
[
0
]
.
endswith
(
"__main__.py"
):
sys
.
argv
[
0
]
=
"unittest"
sys
.
argv
[
0
]
=
"
python -m
unittest"
__unittest
=
True
...
...
Lib/unittest/main.py
Dosyayı görüntüle @
72b19772
...
...
@@ -22,10 +22,9 @@ Options:
-q, --quiet Minimal output
%(failfast)
s
%(catchbreak)
s
%(buffer)
s
Examples:
%(progName)
s test_module - run tests from test_module
%(progName)
s test_module.TestClass - run tests from
test_module.TestClass
%(progName)
s test_module.TestClass.test_method - run specified test method
%(progName)
s test_module - run tests from test_module
%(progName)
s module.TestClass - run tests from module.TestClass
%(progName)
s module.Class.test_method - run specified test method
[tests] can be a list of any number of test modules, classes and test
methods.
...
...
@@ -68,7 +67,7 @@ class TestProgram(object):
USAGE
=
USAGE_FROM_MODULE
# defaults for testing
failfast
=
catchbreak
=
buffer
=
None
failfast
=
catchbreak
=
buffer
=
progName
=
None
def
__init__
(
self
,
module
=
'__main__'
,
defaultTest
=
None
,
argv
=
None
,
testRunner
=
None
,
testLoader
=
loader
.
defaultTestLoader
,
...
...
@@ -160,8 +159,10 @@ class TestProgram(object):
def
_do_discovery
(
self
,
argv
,
Loader
=
loader
.
TestLoader
):
# handle command line args for test discovery
self
.
progName
=
'
%
s discover'
%
self
.
progName
import
optparse
parser
=
optparse
.
OptionParser
()
parser
.
prog
=
self
.
progName
parser
.
add_option
(
'-v'
,
'--verbose'
,
dest
=
'verbose'
,
default
=
False
,
help
=
'Verbose output'
,
action
=
'store_true'
)
if
self
.
failfast
!=
False
:
...
...
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