Cameron Taggart

Results 88 comments of Cameron Taggart

That is a good description that probably should go in the readme.

I'm hitting this too. I tried setting `openInGitHub.gitHubDomain` to our Github Enterprise domain, but looks like a v1.3.5 problem. VS Code 1.25.1 as well on Windows.

@haroldrandom Yes, I ran it in live mode and the tests pass after about 10 minutes with `azdev test VmwareScenarioTest --live`. I then run `azdev test VmwareScenarioTest` and I get...

I dug into this a bit. The [scenario base tests](https://github.com/Azure/azure-python-devtools/blob/master/doc/scenario_base_tests.md) use [vcr](https://github.com/vcr/vcr). There is a [host matcher](https://vcrpy.readthedocs.io/en/latest/api.html#vcr.matchers.host), but I'm not sure how to disable it. The configuration of VCR looks...

I made this workaround: ``` python class VmwareScenarioTest(ScenarioTest): def setUp(self): # https://vcrpy.readthedocs.io/en/latest/configuration.html#request-matching self.vcr.match_on=['scheme', 'method', 'path', 'query'] # not 'host', 'port' super(VmwareScenarioTest, self).setUp() ```

I think my SourceLink.SymbolSource package can help out here. I [just announced it](http://blog.ctaggart.com/2014/11/introducing-sourcelinksymbolstore.html). I'm happy to make a more C# friendly interface if you open and issue and propose an...

I was hoping to use use `clap` command line parser in a Node.js app. `clap` heavily depends on `os_str_bytes` which does not support `wasm32-unknown-unknown`, but does support `wasm32-wasi`. `clap` compiles...

I came across just now https://github.com/bytecodealliance/cargo-wasi and I'm not sure if I should use that directly instead for wasi projects in rust. Can some code be shared to add support...

@techalchemy, I like your suggestion. I would be really useful to me right now if I could use `ignore` do this: ``` toml azure-cli = { {version = ">=2.0.66", ignore...

Hey @christothes, It is that easy when `az cloud set -n AzureCloud`, but when using another cloud such as `az cloud set -n dogfood`, it looks like it fails trying...