ixemad

Results 8 comments of ixemad

Yeah, I confirm this for taskcat `v.0.9.23`. I was debugging the code and it's crazy because the `CFNTest.clean_up()` method invokes the `Config.get_buckets()` method that creates a new project bucket! That...

Just in case you cannot wait for @andrew-glenn's fix, I slightly modified the file `_config.py` to "fix it up" (be careful, I have only tested it in a few cases)....

The previous changeset will fail if you set the config parameter `s3_bucket` to reuse a project bucket. In that case, the `test.s3_bucket` will have to be converted to a `S3BucketObj`...

Hi! It would be possible that instead of raising a `subprocess.CalledProcessError` you raise a `xonsh.tools.XonshCalledProcessError` as in the `itercheck()` method. I miss the error output with the former.

Yeah, I tried to use [linea](https://docs.racket-lang.org/linea/index.html) both ways but it did not work. I get the following error in the Jupyter's backend if I set the reader to `linea/reader`: ```...

With respect to the (amazing) [Org-mode](https://orgmode.org/) example, the next one is likely not the clearest one but it will allow me to expose how flexible (and powerful) is the combination...

I saw but didn't notice that [iRacket](https://docs.racket-lang.org/iracket/index.html) code runs in a sandbox. A far as I can see, the sandbox refuses to run the following example code: ```racket (require shell/pipeline)...

Alright, with respect to my previous comment, [iRacket](https://docs.racket-lang.org/iracket/index.html) can be hacked to allow the `execute` permission in the sandbox (specifically, by modifying the [sandbox-path-permissions](https://docs.racket-lang.org/reference/Sandboxed_Evaluation.html#%28def._%28%28lib._racket%2Fsandbox..rkt%29._sandbox-path-permissions%29%29) parameter). Of course, this is a...