Ivan Smirnov
Ivan Smirnov
Just tried building py-spy on CentOS 7 with default yum-installed libunwind and libunwind-devel packages and... ``` ... ... " "-Wl,-Bdynamic" "-lunwind" "-lunwind-ptrace" "-lunwind-x86_64" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc"...
Below a snippet of the log, installing conda on `windows-latest` with this config: ```yaml with: auto-update-environment: false activate-environment: testenv ``` If you notice the `##[warning]` below, I think that's what's...
Seeing as there's a growing list of options that barely fits one help screen, maybe it would make sense to think about reading the default from config file same as...
From what I gather and from what I've tried, it's currently possible to render the results for each benchmark (i.e. a row) into an svg file using pygal/pygaljs. There's a...
This would be extremely useful if you run this as a part of continuous integration -- currently, the images can be saved (per each benchmark), but the resulting table itself...
From pytest-benchmarks's test suite: ``` test_single 1192.0929 test_setup 1907.3486 test_args_kwargs 1907.3486 test_iterations 190.7349 test_rounds_iterations 95.3674 ``` The benchmark report is 188 characters wide but I think it contains a lot...
Using this example from a previous issue: ``` python @pytest.mark.benchmark(group='read') def test_read(benchmark, method): benchmark(read(method=method)) @pytest.mark.benchmark(group='write') def test_write(benchmark, method): benchmark(write(method=method)) ``` Let's say this outputs ``` test_read[method0] 264 test_read[method1] 112 test_read[method2]...
@davidfig Hi and thanks for an awesome idea and a great implementation of it :) I was trying to make it work in my use case but I've hit a...
Simple (and the most common, I believe) use case - you're implementing `Display` or `Debug` for your type containing some time objects, and you are provided with [`std::fmt::Formatter`](https://doc.rust-lang.org/std/fmt/struct.Formatter.html) which [implements](https://doc.rust-lang.org/std/fmt/struct.Formatter.html#impl-Write)...
Runner
@nbigaouette This is somewhat WIP in that if this is deemed acceptable, then some docs should be added, things may be cleaned up a bit etc, but it's fully functional....