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
6c44619e
Kaydet (Commit)
6c44619e
authored
Agu 17, 2016
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
regrtest: rename --slow option to --slowest
Thanks to optparse, --slow syntax still works ;-)
üst
717a32b7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
cmdline.py
Lib/test/libregrtest/cmdline.py
+1
-1
test_regrtest.py
Lib/test/test_regrtest.py
+6
-6
No files found.
Lib/test/libregrtest/cmdline.py
Dosyayı görüntüle @
6c44619e
...
...
@@ -168,7 +168,7 @@ def _create_parser():
help
=
'display test output on failure'
)
group
.
add_argument
(
'-q'
,
'--quiet'
,
action
=
'store_true'
,
help
=
'no output unless one or more tests fail'
)
group
.
add_argument
(
'-o'
,
'--slow'
,
action
=
'store_true'
,
dest
=
'print_slow'
,
group
.
add_argument
(
'-o'
,
'--slow
est
'
,
action
=
'store_true'
,
dest
=
'print_slow'
,
help
=
'print the slowest 10 tests'
)
group
.
add_argument
(
'--header'
,
action
=
'store_true'
,
help
=
'print header with interpreter info'
)
...
...
Lib/test/test_regrtest.py
Dosyayı görüntüle @
6c44619e
...
...
@@ -109,7 +109,7 @@ class ParseArgsTestCase(unittest.TestCase):
self
.
assertEqual
(
ns
.
verbose
,
0
)
def
test_slow
(
self
):
for
opt
in
'-o'
,
'--slow'
:
for
opt
in
'-o'
,
'--slow
est
'
:
with
self
.
subTest
(
opt
=
opt
):
ns
=
libregrtest
.
_parse_args
([
opt
])
self
.
assertTrue
(
ns
.
print_slow
)
...
...
@@ -661,9 +661,9 @@ class ArgsTestCase(BaseTestCase):
self
.
check_executed_tests
(
output
,
test
,
omitted
=
test
)
def
test_slow
(
self
):
# test --slow
# test --slow
est
tests
=
[
self
.
create_test
()
for
index
in
range
(
3
)]
output
=
self
.
run_tests
(
"--slow"
,
*
tests
)
output
=
self
.
run_tests
(
"--slow
est
"
,
*
tests
)
self
.
check_executed_tests
(
output
,
tests
)
regex
=
(
'10 slowest tests:
\n
'
'(?:
%
s: [0-9]+
\
.[0-9]+s
\n
){
%
s}'
...
...
@@ -671,15 +671,15 @@ class ArgsTestCase(BaseTestCase):
self
.
check_line
(
output
,
regex
)
def
test_slow_interrupted
(
self
):
# Issue #25373: test --slow with an interrupted test
# Issue #25373: test --slow
est
with an interrupted test
code
=
TEST_INTERRUPTED
test
=
self
.
create_test
(
"sigint"
,
code
=
code
)
for
multiprocessing
in
(
False
,
True
):
if
multiprocessing
:
args
=
(
"--slow"
,
"-j2"
,
test
)
args
=
(
"--slow
est
"
,
"-j2"
,
test
)
else
:
args
=
(
"--slow"
,
test
)
args
=
(
"--slow
est
"
,
test
)
output
=
self
.
run_tests
(
*
args
,
exitcode
=
1
)
self
.
check_executed_tests
(
output
,
test
,
omitted
=
test
)
regex
=
(
'10 slowest tests:
\n
'
)
...
...
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