diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 6e1fb31..b9fb3d7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,13 +6,15 @@ python: before_install: - sudo apt-get update -qq - "export DISPLAY=:99.0" - - "sh -e /etc/init.d/xvfb start" - - sleep 3 # give xvfb some time to start + # - "sh -e /etc/init.d/xvfb start" + # - sleep 3 # give xvfb some time to start # command to install dependencies install: - pip install -r requirements.txt +services: + - xvfb # command to run tests and coverage script: - python manage.py makemigrations @@ -22,4 +24,4 @@ script: after_success: - coverage combine - - coverage report
\ No newline at end of file + - coverage report |