contrib/heptapod-ci.yml
branchstable
changeset 44168 2aa2408e7515
parent 44167 7e08d3885b28
child 44169 5fd43c788943
equal deleted inserted replaced
44167:7e08d3885b28 44168:2aa2408e7515
     5 before_script:
     5 before_script:
     6     - hg clone . /tmp/mercurial-ci/ --noupdate
     6     - hg clone . /tmp/mercurial-ci/ --noupdate
     7     - hg -R /tmp/mercurial-ci/ update `hg log --rev '.' --template '{node}'`
     7     - hg -R /tmp/mercurial-ci/ update `hg log --rev '.' --template '{node}'`
     8     - cd /tmp/mercurial-ci/
     8     - cd /tmp/mercurial-ci/
     9 
     9 
    10 checks-py2:
    10 variables:
       
    11     PYTHON: python
       
    12 
       
    13 .runtests_template: &runtests
    11     script:
    14     script:
    12         - cd tests/
    15         - cd tests/
    13         - python run-tests.py --color=always --time test-check-*.*
    16         - echo "python used, $PYTHON"
       
    17         - $PYTHON run-tests.py --color=always --time test-check-*.*
       
    18 
       
    19 checks-py2:
       
    20     <<: *runtests
       
    21 
       
    22 checks-py3:
       
    23     <<: *runtests
       
    24     variables:
       
    25         PYTHON: python3