Package: errbot / 6.2.0+ds-5

Metadata

Package Version Patches format
errbot 6.2.0+ds-5 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0002 Remove pygments markdown lexer dependency.patch | (download)

setup.py | 3 1 + 2 - 0 !
1 file changed, 1 insertion(+), 2 deletions(-)

 remove pygments-markdown-lexer dependency

This package is only used in a demo mode and ther eis no Debian package
yet (the software is in BETA
https://github.com/jhermann/pygments-markdown-lexer)

SyntaxWarning.patch | (download)

errbot/backends/irc.py | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

---
tests shut down thread pools.patch | (download)

errbot/backends/test.py | 4 4 + 0 - 0 !
tests/base_backend_test.py | 10 8 + 2 - 0 !
2 files changed, 12 insertions(+), 2 deletions(-)

 close and join thread pools between tests

https://bugs.debian.org/1103066 reported test failures on Debian's i386
architecture.  After some digging I found that tests were hitting
`ENOMEM` depending on which other tests had been run previously,
suggesting test isolation problems; i386 has a more limited address
space than most other architectures so is more likely to run into this
sort of thing.  Forcing thread pools to be shut down between tests seems
to avoid this problem.