diff --git a/python-base.changes b/python-base.changes index 3e7bc68..f54ec95 100644 --- a/python-base.changes +++ b/python-base.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 19 11:19:42 UTC 2019 - Tomáš Chvátal + +- Skip test_urllib2_localnet that randomly fails in OBS + ------------------------------------------------------------------- Wed May 29 08:58:16 UTC 2019 - Martin Liška diff --git a/python-base.spec b/python-base.spec index b8d43e2..1d20c25 100644 --- a/python-base.spec +++ b/python-base.spec @@ -235,7 +235,8 @@ LD_LIBRARY_PATH=$PWD:$LD_LIBRARY_PATH \ %ifnarch hppa # test_file(2k) fails in autobuild env - "stdin.seek(-1)" wrongly succeeds. probably an issue with autobuild's stdin # test_urllib2 relies on being able to resolve local address, which is notoriously impossible in autobuild -EXCLUDE="test_urllib2 test_file test_file2k" +# test_urllib2_localnet randomly fails out +EXCLUDE="test_urllib2 test_urllib2_localnet test_file test_file2k" # test_nis and test_threading are AWFULLY slow. EXCLUDE="$EXCLUDE test_nis test_threading" # test_gdb fails if gdb with (different) python support is part of the buildsystem diff --git a/python.changes b/python.changes index be80caf..9ba2d5f 100644 --- a/python.changes +++ b/python.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 19 11:19:42 UTC 2019 - Tomáš Chvátal + +- Skip test_urllib2_localnet that randomly fails in OBS + ------------------------------------------------------------------- Wed May 29 08:58:16 UTC 2019 - Martin Liška diff --git a/python.spec b/python.spec index 9c0198e..41b0344 100644 --- a/python.spec +++ b/python.spec @@ -284,7 +284,7 @@ LD_LIBRARY_PATH=$PWD:$LD_LIBRARY_PATH \ if test $(ulimit -v) = unlimited || test $(ulimit -v) -gt 10000000; then ulimit -v 10000000 || : fi -LIST="test_urllib test_ssl test_hashlib test_hmac test_urllib2_localnet test_unicodedata test_tarfile test_sqlite test_tcl test_dbm test_anydbm test_dumbdbm test_gdbm test_whichdb test_tk test_ttk_textonly test_bsddb test_bsddb3 test_readline" +LIST="test_urllib test_ssl test_hashlib test_hmac test_unicodedata test_tarfile test_sqlite test_tcl test_dbm test_anydbm test_dumbdbm test_gdbm test_whichdb test_tk test_ttk_textonly test_bsddb test_bsddb3 test_readline" make test TESTOPTS="$LIST" TESTPYTHONOPTS="-R" %endif