Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,19 @@ branches:
only:
- master

# signal that we are on travis
# to disable things that expect an
# X Display
#
env:
- TRAVISCI=true
# command to install dependencies
install:
- pip install --upgrade pip
- pip install -r requirements.txt
- pip install -r test_requirements.txt --upgrade
- pip install -r docs_requirements.txt
- pip install -e .
# command to run tests

before_script: # configure a headless display to test plot generation
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start

script:
- cd qcodes
- py.test --cov=qcodes --cov-report xml --cov-config=.coveragerc
Expand Down