lucagiove

Results 32 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...

On my machine there are failures on all test_RequestsOnSessionKeywords Seems mock is not working and the test tries to really connect to the network. ``` utests/test_RequestsOnSessionKeywords.py:16 (test_common_request_file_descriptor_closing) self = def...

By the way it's a nice work. Thanks, I should try to understand why GitHub pipelines stop running... :(

> I think approval from a maintainer will make the workflows run? It seems you are using a pretty old version of python (3.9). I ran all tests on 3.12...

Yes I agree I should drop some legacy python versions. Actually I should have a matrix between robot and python versions on different OS.