Thomas Van Lenten
Thomas Van Lenten
Are you looking to disable the whole test or just a test method? In stock Xcode you don't really "disable" a test, as much as schemes control what tests/test methods...
My $0.02 would be the initial param files I described model what libraries for other languages do and is reasonable scoped (and doesn't need any Decoders). It also can be...
Looking at the commonmark spec, the right fix might actually just to be add a dependency on cmark and run it over the text rather than try to recreate the...
Possible straw man – Make them more like rules/aspects: ```python SWIFT_FEATURE_COVERAGE = define_feature( name = "swift.coverage", doc = """ This feature is enabled if coverage collection is enabled for the...
Why does GTMSessionFetcher have to be changed at all? i.e. - just because Firebase were to move to more Swift, that doesn't seem like it means it can't depend on...
The file-level docstring would provide an overview, but likely wouldn't map the the `# title` directive well.
Most module docstrings seem like that are more just descriptions (for example https://github.com/bazelbuild/bazel-skylib/blob/master/lib/collections.bzl#L15), so it didn't really seem like a logical place to insert the documentation page title, etc. So...
If I'm reading the java right, I think the template engine extracts the module doc string, but the default template for a file doesn't attempt to make use of it.
Could be interesting, there is a little overlap with other bazel flags (the test filter), but that doesn't mean it wouldn't be interesting to look at seeing how things could...
Actually, the rules part is easy, it would just be figuring out how we want to support it. The real work would be in runners, they are what would then...