@@ -577,13 +577,14 @@ To install asv::
577577
578578If you need to run a benchmark, change your directory to ``asv_bench/ `` and run::
579579
580- asv continuous upstream/master HEAD
580+ asv continuous -f 1.1 upstream/master HEAD
581581
582- You can replace ``HEAD `` with the name of the branch you are working on.
582+ You can replace ``HEAD `` with the name of the branch you are working on,
583+ and report benchmarks that changed by more than 10%.
583584The command uses ``conda `` by default for creating the benchmark
584585environments. If you want to use virtualenv instead, write::
585586
586- asv continuous -E virtualenv upstream/master HEAD
587+ asv continuous -f 1.1 - E virtualenv upstream/master HEAD
587588
588589The ``-E virtualenv `` option should be added to all ``asv `` commands
589590that run benchmarks. The default value is defined in ``asv.conf.json ``.
@@ -595,12 +596,12 @@ regressions. You can run specific benchmarks using the ``-b`` flag, which
595596takes a regular expression. For example, this will only run tests from a
596597``pandas/asv_bench/benchmarks/groupby.py `` file::
597598
598- asv continuous upstream/master HEAD -b groupby
599+ asv continuous -f 1.1 upstream/master HEAD -b ^ groupby
599600
600601If you want to only run a specific group of tests from a file, you can do it
601602using ``. `` as a separator. For example::
602603
603- asv continuous upstream/master HEAD -b groupby.groupby_agg_builtins
604+ asv continuous -f 1.1 upstream/master HEAD -b groupby.groupby_agg_builtins
604605
605606will only run the ``groupby_agg_builtins `` benchmark defined in ``groupby.py ``.
606607
0 commit comments