testing: install Mercurial 6.7.4 in test suite
authorConnor Sheehan <sheehan@mozilla.com>
Wed, 12 Jun 2024 10:46:28 -0400
changeset 8137 5d77717bd6fb6d31a07cd9cf2f48074003622c2c
parent 8136 087a67f0b6eb9206896fe206b5160a999245e4c9
child 8138 139ce1153e1bf5be277b39e50c9465504cfed662
push id4102
push usercosheehan@mozilla.com
push dateWed, 12 Jun 2024 14:47:16 +0000
treeherderversion-control-tools@5d77717bd6fb [default view] [failures only]
perfherder[talos] [build metrics] [platform microbench] (compared to previous push)
testing: install Mercurial 6.7.4 in test suite
testing/vcttesting/environment.py
--- a/testing/vcttesting/environment.py
+++ b/testing/vcttesting/environment.py
@@ -116,17 +116,17 @@ def install_mercurials(venv, hg="hg"):
     """Install supported Mercurial versions in a central location."""
     VERSIONS = [
         "6.1.4",
         "6.2.3",
         "6.3.2",
         "6.4.3",
         "6.5.2",
         "6.6.3",
-        "6.7.3",
+        "6.7.4",
     ]
 
     hg_dir = os.path.join("/app", "venv", "hg")
     mercurials = os.path.join(venv["path"], "mercurials")
 
     # Setting HGRCPATH to an empty value stops the global and user hgrc from
     # being loaded. These could interfere with behavior we expect from
     # vanilla Mercurial.