view .gitlab-ci.yml @ 4905:f3e39a354378 mercurial-5.1

branching: merge the stable branch with the mercurial-5.1 branch This revert all the test changes to match the expected output for mercurial 5.1.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Wed, 23 Oct 2019 01:11:13 +0200
parents ab0d09c93532
children d18908c5642a
line wrap: on
line source

flake8:
    script:
        - pip install --user flake8
        - hg files -0 'set:(**.py or grep("^#!.*python")) - removed()' -X hgext3rd/evolve/thirdparty | xargs -0 ~/.local/bin/flake8
tests:
    script:
        - echo $PWD
        - rm -rf /tmp/mercurial-clone-`hg log -r . -T "{node}"`
        - hg clone https://mirror.octobus.net/hg/ /tmp/mercurial-clone-`hg log -r . -T "{node}"` --config share.pool=/tmp/
        - hg -R /tmp/mercurial-clone-`hg log -r . -T "{node}"` update `hg log -r . -T '{branch}'`
        - (cd tests; /tmp/mercurial-clone-`hg log -r . -T "{node}"`/tests/run-tests.py -j 3)
        - rm -rf /tmp/mercurial-clone-`hg log -r . -T "{node}"`