Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-03-20 | Rename qa directory to test | John Newbery | |
2017-02-23 | Fix docstrings in qa tests | John Newbery | |
This commit fixes the module-level docstrings for the tests and helper modules in qa. Many of these tests were uncommented previously - this commit ensures that every test case has at least a minimum level of commenting. | |||
2016-09-29 | test: Explicitly set encoding to utf8 when opening text files | Wladimir J. van der Laan | |
These are text files but their encoding does not depend on the locale. Not all of them require utf8 but it is better to fix it at something to remove potential unpredictability. This is necessary on FreeBSD where no locale is set by default, and apparently Python defaults not only the terminal encoding to the locale but that of every text file. So without LOCALE environment it defaults text file encoding to ASCII. This causes problems with e.g. `bitcoin.conf`. Luckily the locale doesn't affect the default encoding for str.encode() and bytes.decode() on Python 3, so this is the only change necessary. | |||
2016-05-05 | [qa] Switch to py3 | MarcoFalke | |
2016-01-05 | Add missing copyright headers | MarcoFalke | |
2015-11-11 | Add basic coverage reporting for RPC tests | James O'Beirne | |
Thanks to @MarcoFalke @dexX7 @laanwj for review. |