Javier Maestro

Results 12 issues of Javier Maestro

Hi there! Thanks so much for the awesome work done here :) I was wondering why don't you merge your fork with the main repo so that we all have...

Add the option to get snapshots in reverse (from newest to oldest). This is especially useful since the snapshots() method returns a generator!

Add some basic test stats to the test runner output for both SimpleReport and JUnitReport: - number of tests that pass/fail - % of success - number of assertions within...

### Description I was trying to run DooD in MacOS running Docker Desktop and running a countainer where I mount the docker socket but I can't get it to work....

status/triage
area/daemon
version/4.33.0

I was playing with this toolchain and I was trying to use the toolchain as part of `genrule` `toolchains`: ```starlark genrule( name = "test", outs = ["out.txt"], cmd = "echo...

As I mentioned in #890, I have the following code: ```starlark def foo(foobar): return struct( bar = 123, some_very_long_line = lambda arg1, arg2, arg3: _some_other_method(foobar, arg1, arg2, arg3), ) ```...

* add attempt count to the timeout error message so it's clear the timeout is due to the total time accumulated during retries. * add lastFailure to the timeout error...

Following the ["Getting Started with Bazel Docker Container"](https://bazel.build/install/docker-container) tutorial, I wanted to check the Bazel Docker image and when I tried it, I got the following warning: ``` $ docker...

P2

`MODULE.bazel` can use `include` to organize dependencies but, [per the docs](https://bazel.build/rules/lib/globals/module#include): > Only the root module may use `include()`; it is an error if a bazel_dep's MODULE file uses include()....

When using the --noline flag or the %option noline, flex was failing to suppress the %top line directives. There was an if-guard missing in the code that adds the line...