Chris Wright

Results 16 comments of Chris Wright

I've been manually renaming the coverage files in their respective CI jobs which I think covers the `--parallel=True` option. I'm not sure that the `[paths]` section addresses this problem though,...

Ah thanks, I saw that option in the `Option *expected(int value_min, int value_max)` definition too. Looks like the key here is actually `allow_extra_args()`. This avoids needing to worry about accessing...

This cuts both ways. I have json-schema as a submodule and can't build the tests or examples without modifying this project's CMake config.

Are there any technical reasons why this hasn't been merged, or has it just slipped under the radar? Tentatively tagging @shin- in case they may be able to help!

@Mike-Bell I think the build environment difference is what I've noted in #252. The builds run for this repo need to specify `$CC/$CXX` as `clang/clang++`, rather than using the default...

I've just submitted a pull request to resolve this as part of #162. It already uses `configure_file` but with `zconf.h.cmakein` instead of `zconf.h.in`. This is a duplicate of #162.

The way CMake is currently set up, the name conflict in the source directory doesn't actually matter, the header path for `zconf.h` is already defined as `${CMAKE_CURRENT_BINARY_DIR}/zconf.h` so we can...

Only just came across this extension but from a [stackoverflow question](https://stackoverflow.com/questions/23091439) that then points to a now [old fork](https://bitbucket.org/wolever/sphinx-contrib/src/default/autorun2/) which claims to do this.

I feel like this is an extension of the more basic functionality which is the option to specify choices from a list. Of course you can generate an enum but...

@jfcherng That's why I think supporting `typing.Literal` is particularly useful but that seems to have met several roadblocks. My main point around the use of enums is that there are...