# HG changeset patch # User Boris Feld <boris.feld@octobus.net> # Date 1508841700 -7200 # Tue Oct 24 12:41:40 2017 +0200 # Node ID f132ac6588cd14e70a26120afa1cbeebb561599c # Parent 31adf9d3273139f8a1db697c1666c1214d2afa54 Add a new basic test to detect regressions on hg update diff --git a/.netlify b/.netlify --- a/.netlify +++ b/.netlify @@ -1,1 +1,1 @@ -{"site_id":"e6f44312-edda-408d-bbe2-48469f084d9f","path":"html/html"} \ No newline at end of file +{"site_id":"e6f44312-edda-408d-bbe2-48469f084d9f","path":"html/html","production":{"site_id":"3d194a67-4f0a-4580-9d30-3d7638967cb6","path":"html/html"}} \ No newline at end of file diff --git a/benchmarks/basic_commands.py b/benchmarks/basic_commands.py --- a/benchmarks/basic_commands.py +++ b/benchmarks/basic_commands.py @@ -171,6 +171,10 @@ time = self._execute("id", "-r", ". ") return time + def time_up_tip_100(self, *args, **kwargs): + self._execute("up", "-r", "tip~100") + self._execute("up", "-r", "tip") + class LogTimeTestSuite(object):