Skip to content
Snippets Groups Projects
Commit d40e53a2 authored by Dan Villiom Podlaski Christiansen's avatar Dan Villiom Podlaski Christiansen
Browse files

tests: suppress devel warnings on 4.6; clone is broken

parent 4bfa39d2
No related branches found
No related tags found
1 merge request!56GitLab CI
......@@ -13,6 +13,13 @@
echo '[subrepos]' >> $HGRCPATH
echo 'git:allowed = yes' >> $HGRCPATH
# Disable warnings on 4.6, specifically; clone triggers a warning
if hg --version | fgrep -q 'version 4.6'
then
echo "[devel]" >> $HGRCPATH
echo "all-warnings=no" >> $HGRCPATH
fi
# Standard checks for external dependencies
# We use the git command-line client and dulwich in pretty much all the tests.
# Thus, to avoid repetitively declaring that requirement in almost every test,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment