You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
Go over runtests.sh excludes
This commit is contained in:
@@ -3,14 +3,14 @@
|
|||||||
function displaytime {
|
function displaytime {
|
||||||
printf "ran in "
|
printf "ran in "
|
||||||
local T=$1
|
local T=$1
|
||||||
local D=$((T/60/60/24))
|
((D=T/60/60/24))
|
||||||
local H=$((T/60/60%24))
|
((H=T/60/60%24))
|
||||||
local M=$((T/60%60))
|
((M=T/60%60))
|
||||||
local S=$((T%60))
|
((S=T%60))
|
||||||
(( $D > 0 )) && printf '%d days ' $D
|
(( D > 0 )) && printf '%d days ' $D
|
||||||
(( $H > 0 )) && printf '%d hours ' $H
|
(( H > 0 )) && printf '%d hours ' $H
|
||||||
(( $M > 0 )) && printf '%d minutes ' $M
|
(( M > 0 )) && printf '%d minutes ' $M
|
||||||
(( $D > 0 || $H > 0 || $M > 0 )) && printf 'and '
|
(( D > 0 || H > 0 || M > 0 )) && printf 'and '
|
||||||
printf '%d seconds\n' $S
|
printf '%d seconds\n' $S
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -96,6 +96,7 @@ SKIP_TESTS=(
|
|||||||
[test_sys_settrace.py]=1 # test assert fail
|
[test_sys_settrace.py]=1 # test assert fail
|
||||||
|
|
||||||
[test_tcl.py]=1 # it fails on its own
|
[test_tcl.py]=1 # it fails on its own
|
||||||
|
[test_tempfile.py]=1 # test assertion failures
|
||||||
[test_thread.py]=1
|
[test_thread.py]=1
|
||||||
[test_threading.py]=1
|
[test_threading.py]=1
|
||||||
[test_timeout.py]=1
|
[test_timeout.py]=1
|
||||||
@@ -111,6 +112,7 @@ SKIP_TESTS=(
|
|||||||
[test_urllib2net.py]=1 # it fails on its own
|
[test_urllib2net.py]=1 # it fails on its own
|
||||||
[test_urllibnet.py]=1 # it fails on its own
|
[test_urllibnet.py]=1 # it fails on its own
|
||||||
[test_urlparse.py]=1 # test assert error
|
[test_urlparse.py]=1 # test assert error
|
||||||
|
[test_uu.py]=1 # test assert error
|
||||||
|
|
||||||
[test_winreg.py]=1 # it fails on its own
|
[test_winreg.py]=1 # it fails on its own
|
||||||
[test_winsound.py]=1 # it fails on its own
|
[test_winsound.py]=1 # it fails on its own
|
||||||
|
Reference in New Issue
Block a user