Ken Payne
Ken Payne
Thanks for getting back to me! I have a really basic implementation working (using a simple `my_project/{self.name).yaml` pattern) but adding a `/*/` to my pattern didn't work 🤔 Still, to...
The way I am thinking about this is conceptually similar to how SQLAlchemy's [Classical Mapper](https://docs.sqlalchemy.org/en/13/orm/mapping_styles.html#classical-mappings) works. Object and persistence defined separately and then explicitly mapped 🙂 Ideally the schema and...
Glad we are on the same lines - I tried `create_model` first before playing with subclassing. Here is the full [poc codebase](https://gitlab.com/kgpayne/poc-project-config-engine/-/tree/master), with a [notebook](https://gitlab.com/kgpayne/poc-project-config-engine/-/blob/master/poc.ipynb) I have been working in....
Hey 👋 Thanks for checking this out! I recently moved roles, and am no longer at `tailsdotcom/` to be able to sign an Organisational CLA on their behalf. However @alanmcruickshank...
Following this comment on [env var expansion](https://github.com/meltano/meltano/pull/6758#discussion_r977547766), it strikes me that manual expansion is needed in this case because `state_id_suffix` is implemented as a new attribute of the `Environment`, and...
Having had a brief look, two common approaches appear to be: - Mocking `stdin`/`stdout` and sending keypresses via `.communicate()` (e.g. [SO post](https://stackoverflow.com/questions/35537736/unit-testing-keypresses-and-terminal-output-in-python)) - Testing the underlying functionality (template rendering, option...
Looks like we can do this with the Gitpods [prebuilds](https://www.gitpod.io/docs/prebuilds) feature: > Gitpod can trigger a prebuild whenever there is a commit to a repository. That prebuild will then be...
@aaronsteers (and anyone who picks this up in future) > 🥷 Ninja edit: According to the docs, all we need to do is import the library. The effort would be...
@aaronsteers @tayloramurphy this ended up being really really simple - pattern matching was implemented with push-down to the database, but the CLI `pattern` was defined as an argument and not...
As per 1:1 conversation with @aaronsteers we should still do this at some point, but it is less of a priority now as we have added the priority features to...