Cédric Luthi
Cédric Luthi
> And I'm not sure how to create a smaller project that reproduces, either. I can work on figuring that out, though. That would be the best course of action...
You could also produce a binlog file with the `-bl` option so that I can have a look at your build witout having access to your source code. But make...
Not sure if this helps, but a basic [GitHubReporter](https://github.com/thomhurst/TUnit/blob/f857682f30e767df0f352fc2f5218c6fb5127ed3/TUnit.Engine/Reporters/GitHubReporter.cs) has been implemented in TUnit. It doesn't seem to handle any options, though.
I have been following [Brad Wilson](https://mastodon.social/@bradwilson) on Mastodon lately and it really looks like v3 is happening. Also, see [this post from the xUnit.net account](https://dotnet.social/@xunit/112881458424002481): > To answer what will...
I haven't tried in Visual Studio (probably @bradwilson can answer this) but for Rider it [doesn't work yet](https://youtrack.jetbrains.com/issue/RSRP-497885). With the latest early access preview version (2024.2 EAP9) tests are discovered...
Although it's not mentioned in the [The Rider 2024.2 Release Candidate Is Now Available](https://blog.jetbrains.com/dotnet/2024/08/07/rider-2024-2-rc/) blog post, xUnit.net v3 support is available and working well in JetBrains Rider 2024.2 RC 1....
I've address this concern in the follow-up commits by reading the configuration from the file system, like `DockerRegistryAuthenticationProvider` does. I re-used the code that performs `docker context inspect --format {{.Endpoints.docker.Host}}`...
I think I finally got an implementation that matches the `docker context inspect --format {{.Endpoints.docker.Host}}` command invocation, that was quite some work. 😓 Fortunately the Docker CLI source code is...
Please don't merge yet, I have found issues with the tests (the DockerConfig class is not well testable because of its static path properties). If you have a custom context...
I just ran the test one more time on my machine and found a way where a test could fail. I just pushed a fix (266ee03d60125ba509e0a92093c9b90d0a54048e) for the test. Hope...