Skip to content
Snippets Groups Projects
Select Git revision
  • 79f16f083687193123bc0bb473f7d36405f80a0d
  • master default protected
  • 1.0
3 results

.travis.yml

Blame
  • user avatar
    phayes authored
    79f16f08
    History
    .travis.yml 621 B
    # docs available at http://docs.travis-ci.com/user/languages/php/
    # example available at https://github.com/travis-ci/travis-ci-php-example
    language: php
    
    before_script:
      - composer self-update
    
    install:
      - composer install
      # TODO Install geos library -- as a matrix test
      # TODO optionally set up a postgis database for testing
    
    script: cd tests && phpunit --verbose --colors --stderr tests
    
    # run tests on the following versions
    php:
      - 5.6
      - 5.5
      - 5.4
      - 5.3
      - hhvm
      
    matrix:
      fast_finish: false
      allow_failures:
        # php 5.3 does not support random file list as an argument to scandir
        - php: 5.3