DetachHead

Results 929 comments of DetachHead

blocked by https://github.com/pyprojectx/pyprojectx/issues/85

removing the pw lockfile stuff from this PR, since its blocked by https://github.com/pyprojectx/pyprojectx/issues/112 and i want to drop support for 3.8 now that it's EOL

maybe pytest hooks are better suited for this? maybe we should make a listener that exports pytest hooks for every listener event, then you can implement those hooks only in...

the problem with making every function a keyword is that most function calls are internal code that you would never want to see in the robot log. for example, the...

hmm, i thought pytest didn't really have a concept of suite-level setup and teardown, only fixtures that get called by individual tests as they're needed. but reading into it more...

ok so there's a few reasons for this: - the logs from your listener don't work because robot itself doesn't support logging outside of a test from a listener -...

actually, even `setup_module` and `teardown_module` only get executed in the `setup`/`teardown` stage of an individual test (the first or last one in a suite), so i think think supporting it...

what version of the plugin are you using? i suspect that's the same issue as #161 which was fixed in the latest version (2.5.1)

chatgpt seems to be pretty good at doing this in my experience. here's an example prompt and the response it gave me: # prompt > convert the following robotframework code...