Yashodhan
Yashodhan
Hey @whereistejas , thanks for your interest in contribution. I would suggest that rather than starting with `root_readonly_test` , you might start with `craete`. The reason behind this is that...
Hey, yes that are the tests, but they were created as part of proof-of-concept of integration tests themselves, and should be replaced in sometime for their own dedicated tests as...
Hey @whereistejas , yes I meant that create tests should be refactored in there own module, as you are working on in #583 :+1: Thank you for contributing!
Hey there was a pause recently on adding the tests as we were refactoring the directory structure, which is now completed! So if anyone is interested, you can work on...
Hello, Would it be a good idea to make a decorator which will time the functions in test mode and return same function in production mode, so that we can...
It would be along the lines of : ```python3 # file defining the decorator import time profile_data = dict() def profile(fn): profile_data[fn.__name__] = list() if env_is_test: def wrapped(*args,**kwargs): start =...
The python stdlib provides (c)Profile which can be used as stated in the first comment of this issue, and there is also timeit module which can time a function, but...
Should try implementing or not?
Sure, can you open a relevant issue there? Because when I saw it was mostly empty. Also would you be willing to label it for hacktoberfest?
Hey @tcpipchip Thanks for such a detailed message! I apologies that we had not considered many of these things when making this project. We went over what you have suggested,...