Oliver Mannion

Results 233 comments of Oliver Mannion

The advantage of the demo is that it comes with a docker registry to store images that can be run on the cluster.

This happened to me when trying to run `atlantis plan` via comment on an empty PR. I pushed a commit with a trivial change and the `atlantis plan` via comment...

I'm using the following with macOS and zsh to install z idempotently: ``` brew install z grep -q z\.sh ~/.zshrc || echo ". /usr/local/etc/profile.d/z.sh" >> ~/.zshrc ``` +1 for adding...

IIUC `target_version` is mostly used by the pyupgrade checks.

I'm also running into this problem. I'm using `zgen load scmbreeze/scm_breeze` to load the scm_breeze plugin but it tries to call `compdef` and errors: ``` /Users/tekumara/.scm_breeze/lib/git/aliases.sh:192: command not found: compdef...

For now, I am working around this by running `compinit` before zgen. Zgen detects this and doesn't run `compinit` itself. ``` autoload -Uz compinit && \ compinit -C # load...

good point @waisbrot ... I branched off releases/v0.0.2 instead of master because I couldn't get master working... so this PR includes linter changes from 4134272 and distribution changes from ed73505...

Thanks @madkinsz I'll try that. FYI I'm creating the deployment via the CLI, eg: `prefect deployment create flows/kubes_flow.py`.

Yep splitting out the deployment into its own file works! 🥳

FYI I've been chipping away at converting snowflake sql to duckdb over [here](https://github.com/tekumara/fakesnow/blob/main/fakesnow/transforms.py) using sqlglot. See also the [tests](https://github.com/tekumara/fakesnow/blob/main/tests/test_transforms.py). I've found a bunch of edge cases so far, and there's...