So that this test fails is the deps in extras don't have compat
e.g. this Project.toml would currently pass test_deps_compat(FooBar)
name = "FooBar"
uuid = "bb073782-7f75-46c6-bcf5-0b847ae15966"
[deps]
Qux = "62c31256-0984-4232-9d5d-7b366db4679b"
[compat]
Qux = "1"
[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
[targets]
test = ["Aqua", "Test"]
but it'd be great to have the option for this to fail with does not specify `compat` for: Aqua if we use e.g. test_deps_compat(FooBar; check_extras=true)
So that this test fails is the deps in
extrasdon't havecompate.g. this Project.toml would currently pass
test_deps_compat(FooBar)but it'd be great to have the option for this to fail with
does not specify `compat` for: Aquaif we use e.g.test_deps_compat(FooBar; check_extras=true)