My current workflow is having a project environnement in which I dev
the package that I currently develop, ModelPredictiveControl.jl, and I include additional dependencies for the development. I also use the test item framework of VS Code, which is very nice to execute only one unit test.
The problem is every time I modify the code of my package (a modification supported by Revise
), ModelPredictiveControl.jl needs to be precompiled at each execution of the unit test, which is long. Is there a way to opt out precompilation in the test item framework ? I tried to put a LocalPreferences.toml
with:
[ModelPredictiveControl]
precompile_workload = false
in my project environnement for development, but it seems that it is ignored by the test item framework process.