Re: [Bug-wget] [PATCH] Fix python test suite

2016-04-11 Thread Tim Ruehsen
On Sunday 10 April 2016 12:40:01 Giuseppe Scrivano wrote: > Hi Tim, > > Tim Rühsen writes: > > Am Samstag, 9. April 2016, 10:46:23 schrieb Giuseppe Scrivano: > >> Hi Tim, > >> > >> Tim Ruehsen writes: > >> > @@ -27,7 +28,7 @@ class BaseTest: > >> > Define the class-wide variables (or a

Re: [Bug-wget] [PATCH] Fix python test suite

2016-04-10 Thread Giuseppe Scrivano
Hi Tim, Tim Rühsen writes: > Am Samstag, 9. April 2016, 10:46:23 schrieb Giuseppe Scrivano: >> Hi Tim, >> >> Tim Ruehsen writes: >> > @@ -27,7 +28,7 @@ class BaseTest: >> > Define the class-wide variables (or attributes). >> > Attributes should not be defined outside __init__

Re: [Bug-wget] [PATCH] Fix python test suite

2016-04-09 Thread Tim Rühsen
Am Samstag, 9. April 2016, 10:46:23 schrieb Giuseppe Scrivano: > Hi Tim, > > Tim Ruehsen writes: > > @@ -27,7 +28,7 @@ class BaseTest: > > Define the class-wide variables (or attributes). > > Attributes should not be defined outside __init__. > > """ > > > > -s

Re: [Bug-wget] [PATCH] Fix python test suite

2016-04-09 Thread Giuseppe Scrivano
Hi Tim, Tim Ruehsen writes: > @@ -27,7 +28,7 @@ class BaseTest: > Define the class-wide variables (or attributes). > Attributes should not be defined outside __init__. > """ > -self.name = name > +self.name = os.path.basename(os.path.realpath(sys.argv[0

[Bug-wget] [PATCH] Fix python test suite

2016-04-08 Thread Tim Ruehsen
Travis' patches for --pinnedpubkey let me take a closer look into the python test suite today. I wondered why some tests PASSed though there were serious failures in the appropriate .log files. An exception raised in the post_hook did not make the test fail. Patch 0001-... handles this now. The r