JuPrgn
JuPrgn
Hope this can help : I had something similar and was also using gcov plugin. My gcov was configured with : ``` :gcov: :xml_report: FALSE ``` Changing this to :...
This feature would be very appreciated, I have just discovered the extension but my projects are based on a `project.yml` and `project_specific.yml` file. Calling `ceedling summary` report : > ERROR:...
Just modified `adapter.js` to add `project:project_specific.yml ` to every `ceedling ` cmd ``` getCeedlingCommand(args) { const line = `ceedling project:project_specific.yml ${args.join(" ")}`; return line; } ``` I don't know how...
Thank you for your feedback I will improve this PR soon following your recommendations. If I understand it well you propose to merge optional data to a single project.yml that...
Hi, maybe you can call `ceedling project:env test:all` as discussed in #845 this is how I am using specific yml in addition to my project.yml.
@deltalejo I see that you already know well what I suggested and you have interesting Ceedling shared repositories (mdb...) I will give it a try thank you. I thought I...
@Letme this is related to #831
Hi this is configurable with `:test_file_prefix: test_` in your yaml project file.
Hi If this can help : I am using multiple test files test_MyFile.c and test_MyFile_private.c and running ceedling on a single call : `ceedling project:myproject gcov:pattern[test_MyFile*] utils:gcov` Or `ceedling project:myproject...
I am still using Ceedling `0.31.0` maybe this is different in `0.31.1` My project file is similar to yours with these main differences : `:use_deep_dependencies: TRUE` ``` :gcov: :html_report: TRUE...