https://github.com/grid-control/grid-control
Raw File
Tip revision: 141c0c565ee85857c67b39f66c0f02bce1a88bfa authored by Fred Stober on 15 April 2016, 16:46:16 UTC
Scripts:
Tip revision: 141c0c5
.travis.yml
language: python
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"
  - "3.4"
  - "3.5"
  - "pypy"
before_install:
  - pip install codecov
  - pip install 'coverage<4'
script:
  - ./packages/gcUpdatePlugins.py # randomized order
  - ./packages/gcUpdatePlugins.py
  - ./packages/gcUpdatePlugins.py
  - ./packages/gcUpdatePlugins.py
  - ./packages/gcUpdatePlugins.py
  - export WRAPPER='coverage run -a'
  - if [[ $TRAVIS_PYTHON_VERSION == 'pypy'* ]]; then export WRAPPER=''; fi
  - $WRAPPER ./go.py -s -o '[jobs] continuous = False' docs/examples/ExampleS1_stresstest.conf
  - $WRAPPER ./go.py -G --debug docs/examples/ExampleS1_stresstest.conf
  - $WRAPPER ./go.py docs/examples/ExampleS1_stresstest.conf
  - diff ExampleS1_stresstest.list docs/examples/ExampleS1_stresstest.list.ref
after_success:
  - codecov
back to top