gretzteam

Results 5 comments of gretzteam

Having hooks to control from the calling test scrip would be good. I'm not sure what the best way is. But right now the log file isn't created anywhere. I...

I made a custom function that dumps the params and other tb/ip config to a yaml file in some kind of uniform way. The cocotb testbench can read it back....

When using Pytest in parallel, I've been doing this to avoid colliding sim_build directory: ``` @pytest.mark.parametrize('xw', range(8,12)) @pytest.mark.parametrize('yw', range(20,22)) def test_widths(request, xw, yw): run( module='tb_cocotb', testcase='bringup', sim_build='sim_build_{}'.format(request.node.name).replace('[', '').replace(']', ''), ......

I'm not too familiar with pytest but there might be a way to get the calling script name or directory directly? The issue I was having with the method above...

As I alluded to in a comment above I think it would be good to have an option to differentiate between the directory where stuff is compiled to, and the...