Hi all
I want to use some default during testing and put them in my packages in the ext foulder.
In the Project.toml
I put:
[weakdeps]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
[extensions]
TestExt = "Test"
[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
[targets]
test = ["Test"]
I have the problem that the extention files are always loaded even though I never wrote using Test
. How would I fix that!