Open Leemur89 opened 1 month ago
good idea ;-)
Hi,
I've just found our about the existence of the possibility to select the desired profiles from the env variable ROBOTCODE_PROFILES
, which actually perfectly covers my needs for CI (btw it lacks the tiny explanation of the separator, which I know now that is a space, in the documentation)
Hello,
I'd like to be able to activate other profiles when selecting one. Note that this is different from the
inherit
For instance let say I have the following profiles:Both
server_*
profiles are setting some variables required for my tests to run (like URL and stuff) Dryrun is to run tests in dryrun mode, but it still requires some var to avoid undefined variable errors (vars that can be set from above profiles) And ci is enabled if in ci.I would like something like:
Then in my pipeline I would call my job simply with
robotcode -p dryrun robot
Why does
inherit
not work? For instanceci
profile is only enabled in ci environment:With
inherit
mydryrun
profile would also inherit thatenable
parameter. Here I want that the dryrun profile to be enabled no matter what, but not the ciRecap
Command
robotcode -p dryrun robot
Always activate theserver_UAT
profile If from CI environment, also activateci
profileHope it is clear enough
Thanks