williballenthin / python-idb

Pure Python parser and analyzer for IDA Pro database files (.idb).
Apache License 2.0
457 stars 73 forks source link

CI did not report the failed tests #80

Closed imbillow closed 4 years ago

imbillow commented 4 years ago

image

I found some unexpected errors, it looks contain some failures with python2.7.

Because I override this function:

    def vsParse(self, sbytes, offset=0, fast=False):
        self.sbytes = sbytes
        self.len_sbytes = len(sbytes)
        return super().vsParse(sbytes, offset, fast)

And the test command find . -name test\*py -exec py.test {} -v --cov=idb \;, did not report them(the failed tests).

Originally posted by @imbillow in https://github.com/williballenthin/python-idb/pull/79#issuecomment-658875999