Specify plugin language as cpp or py#196
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. ❌ Your project status has failed because the head coverage (76.31%) is below the target coverage (80.00%). You can increase the head coverage or adjust the target coverage. @@ Coverage Diff @@
## main #196 +/- ##
==========================================
- Coverage 76.47% 76.31% -0.17%
==========================================
Files 124 124
Lines 2737 2748 +11
Branches 472 476 +4
==========================================
+ Hits 2093 2097 +4
- Misses 449 454 +5
- Partials 195 197 +2
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 3 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
c9d8abf to
aafdd00
Compare
|
@phlexbot format |
|
No automatic clang-format fixes were necessary. |
|
Automatic cmake-format fixes pushed (commit 20d108e). |
20d108e to
e398935
Compare
|
@phlexbot format |
|
No automatic clang-format fixes were necessary. |
|
Automatic cmake-format fixes pushed (commit cfedc26). |
Enacts the following change for C++ plugins:
<plugin_label> : { - plugin: "my_cpp_plugin" + cpp: "my_cpp_plugin" }and the following change for Python plugins:
<plugin_label> : { - plugin: "pymodule" - pyplugin: "my_python_module.py" + py: "my_python_module" }Note that, for Python plugins, the
cpp: "pymodule"configuration is automatically inserted into the configuration if thepy: ...parameter is present.cpporpyparameter #164.