myzhan

Results 89 comments of myzhan

> > 用 master 分支就好,一般是在 locust 做了不兼容的修改后,boomer 才会发一个 tag,让用户可以用回老版本的 locust。 > > 如何使用master分支呢,我试了一下go项目下go.mod只能填v1.6.0呢 在一个启用 go.mod 的项目,用这个命令试试 ```bash $ go get github.com/myzhan/boomer@master ```

@zezhehh I'm not sure why we should do this explicitly.

OK, now I get it. Can you provide your code of boomer task to reproduce this issue?

I can't reproduce the stuck issue, but I think it's harmless to add runtime.Gosched().

有考虑,但是目前没有很强的驱动。例如需要新的功能,或者有新的架构调整。

精力有限,我不会把 boomer 发展为一个大而全的性能测试平台的,会一直是一个简单的库。如果你有更多的平台性需求,可以看看 httprunner,它也集成了 boomer,并且加了更多功能。

@ikorihn I think you can submit a PR.

I try to use --remap-all to workaround. ```bash scc -c --no-cocomo -i "go" --exclude-dir ".git,vendor" --remap-all "ginkgo":"Ginkgo test" ```

BTW, this feature only support single module, most of the time, I only care about the coverage of one single module being tested.

Aslo, I can use ffi. ```lua local ffi = require("ffi") ffi.cdef[[ typedef long time_t; typedef int clockid_t; typedef struct timespec { time_t tv_sec; /* seconds */ long tv_nsec; /* nanoseconds...