Replies: 1 comment
-
Hi, this is not supported at the moment as it is not a use case we have in OCA. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've two different dependent addons directory which I need to test using test running of Github Actions.
I am using oca-ci's scripts in the test.yml file.
test runner skips the custom_addons1, and custom_addons2 directories while running the test. So, I tried to by adding ADDONS_DIR environment variable in test.yml file. In different ways,
env:
ADDONS_DIR: custom_addons1,custom_addons2
or
env:
ADDONS_DIR: "custom_addons1,custom_addons2"
or
env:
ADDONS_DIR: ./custom_addons1, ./custom_addons2
everytime test fails.
Could you please tell me how can I achieve this? I need to test both addons directories at the same time. Please suggest.
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions