robotcodedev / robotcode

RobotFramework support for Visual Studio Code
https://robotcode.io
Apache License 2.0
168 stars 13 forks source link

[ENHANCEMENT] option to disable the test controller #204

Closed DetachHead closed 3 months ago

DetachHead commented 5 months ago

Is your enhancement request related to a problem? Please describe. i've created a pytest plugin that allows you to run robot tests using pytest, as well as generate robot reports for tests written in python: https://github.com/detachhead/pytest-robotframework

however, both the pytest and robotcode extensions add tests to vscode's tests view, which is confusing because it's difficult to tell which is which:

image

Describe the solution you'd like an option to disable the run buttons so it doesn't duplicate the ones added by pytest

Describe alternatives you've considered i added an option to the robotframework-lsp extension: https://github.com/robocorp/robotframework-lsp/pull/993, however there hasn't been a release for several months, and it looks like robotcode might be more actively maintained.

d-biehl commented 5 months ago

This sounds like a good idea, but there are a few things to bear in mind.

What interests me, why should I be able to execute Robot Framework test cases with PyTest?

DetachHead commented 5 months ago
  • Switching the setting on/off should not require a complete reload of VSCode
  • RobotCode has Multi Workspace Folder Support, i.e. this setting should work on User/(Remote)/Workspace/Folder level (in one project I want to switch it off and in the other not)
  • The View is called "Test Explorer"

i'll try to update my PR to address these points. thanks!

  • What possibilities are there to execute and debug test cases with the RobotCode Runner? As far as I can see, your PyTest connection does not support the debugging of Robot Framework files.

unfortunately that's something i haven't figured out yet. i raised an issue about this at https://github.com/robocorp/robotframework-lsp/issues/994. i don't fully understand how the debugger stuff works or how much of that is relevant to robotcode too. but i'd be happy to try to help implement this functionality in the future if possible

What interests me, why should I be able to execute Robot Framework test cases with PyTest?

the main motivation behind my pytest plugin is to generate robotframework reports for tests written in python, since i much prefer python to the robot language.

the reason it also supports running .robot tests is because i found that makes it much easier to adopt the plugin in an existing codebase with hundreds of robot tests, where we can gradually convert tests to python and have a single tool to manage all of our tests, regardless of the language they're written in.