diff options
author | kai-striega <kaistriega@gmail.com> | 2020-05-03 09:54:43 +0800 |
---|---|---|
committer | kai-striega <kaistriega@gmail.com> | 2020-05-03 09:54:43 +0800 |
commit | bc98e5448e211134a0dcce88ca23f0d85d22da9f (patch) | |
tree | 8a3d9daf418a54c1435453c2e3c5835e0afdabaa | |
parent | 6c9ecdf2847d03d04f5111d6df427a29fbb36319 (diff) | |
download | numpy-bc98e5448e211134a0dcce88ca23f0d85d22da9f.tar.gz |
BENCH: Default to building HEAD instead of master
asv executes the benchmarks of the current branch building the code
specified in "branches". Previously this was "master" instead of "HEAD"
(the code currently worked on). This PR changes "master" -> "HEAD" as it
seems more likely for a user to be generating benchmarks for the code
they are currently working on.
-rw-r--r-- | benchmarks/asv.conf.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/asv.conf.json b/benchmarks/asv.conf.json index 1046f10f2..d9222d495 100644 --- a/benchmarks/asv.conf.json +++ b/benchmarks/asv.conf.json @@ -15,7 +15,7 @@ // List of branches to benchmark. If not provided, defaults to "master" // (for git) or "tip" (for mercurial). - "branches": ["master"], + "branches": ["HEAD"], // The DVCS being used. If not set, it will be automatically // determined from "repo" by looking at the protocol in the URL |