lucagiove

Results 16 comments of lucagiove

Can I reproduce it with the fakeapi url you pasted? Would mind create a Pull Request with a failing test?

I resolved this issue creating the class variables (fixtures) in the class directly instead of in the setUpClass method. eg: ``` class TestAvro(unittest.TestCase): products = json.load(open('products.json')) contents = json.load(open('contents.json')) @classmethod...

This bug make impossibile to run tests on a data loaded for an external file or db

I made the fixture working by adding the variables in the class directly instead of creating them in setUpClass method eg: ``` class TestAvro(unittest.TestCase): products = json.load(open('products.json')) contents = json.load(open('contents.json'))...

Another situation that is not working is having PR merged in a branch than merged to master. Esample pr-1 -> release-branch pr-2 -> release-branch pr-release-branch -> master Changelog considers only...

> I'm catch by verify parameter and their documentation. It is a little misleading. Looking for the documentation, it cite that it can be {True} or {False} and some places...