I have a test that I run in parallel for multiple data sets. I'm following the syntax provided
here for injecting data from a JSON file to my test and then use
lcc run --threads 10 to run 10 instances of the same test at a time. However, my test gets stuck sometimes indefinitely for hours and I don't know the reason. This issue is not seen every time I run my test.
Is there a way I could see what's going wrong? What debugging strategy shall I be using since I have no idea where the tests are stuck since all the logs go the lcc logger and nothing on console? This test runs in Jenkins where I see this behaviour. If this was run with python interpreter, then python -m trace --trace YOURSCRIPT.py might have worked. I'm looking for something similar for lcc.