[U-Boot] [PATCHv3 06/13] test/py: Manual python3 fixes

2019-10-24 Thread Tom Rini
- Modern pytest is more visible in telling us about parameters that we had not described, so describe a few more. - ConfigParser.readfp(...) is now configparser.read_file(...) - As part of the "strings vs bytes" conversions in Python 3, we use the default encoding/decoding of utf-8 but in some

Re: [U-Boot] [PATCHv3 06/13] test/py: Manual python3 fixes

2019-11-01 Thread Tom Rini
On Thu, Oct 24, 2019 at 11:59:21AM -0400, Tom Rini wrote: > - Modern pytest is more visible in telling us about parameters that we > had not described, so describe a few more. > - ConfigParser.readfp(...) is now configparser.read_file(...) > - As part of the "strings vs bytes" conversions in Pyt