@@ -577,13 +577,14 @@ To install asv::
577
577
578
578
If you need to run a benchmark, change your directory to ``asv_bench/ `` and run::
579
579
580
- asv continuous upstream/master HEAD
580
+ asv continuous -f 1.1 upstream/master HEAD
581
581
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%.
583
584
The command uses ``conda `` by default for creating the benchmark
584
585
environments. If you want to use virtualenv instead, write::
585
586
586
- asv continuous -E virtualenv upstream/master HEAD
587
+ asv continuous -f 1.1 - E virtualenv upstream/master HEAD
587
588
588
589
The ``-E virtualenv `` option should be added to all ``asv `` commands
589
590
that 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
595
596
takes a regular expression. For example, this will only run tests from a
596
597
``pandas/asv_bench/benchmarks/groupby.py `` file::
597
598
598
- asv continuous upstream/master HEAD -b groupby
599
+ asv continuous -f 1.1 upstream/master HEAD -b ^ groupby
599
600
600
601
If you want to only run a specific group of tests from a file, you can do it
601
602
using ``. `` as a separator. For example::
602
603
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
604
605
605
606
will only run the ``groupby_agg_builtins `` benchmark defined in ``groupby.py ``.
606
607
0 commit comments