InfluxPHP/.travis.yml
Pablo Lopez Torres 42d2c2d1f0 fixing the TravisCI build with InfluxDB new features:
- dbs is changed to db in the latest InfluxDB when listing dbs
 - username is changed to name in the latest InfluxDB when creating
   user
 - PHPUnit_Framework_TestCase instead of phpunit_framework_testcase
 - Grouping by anything but time does not return time anymore
2014-09-04 18:28:50 +02:00

14 lines
321 B
YAML

language: php
script: phpunit
php:
- 5.4
- 5.5
before_script:
- curl -s http://getcomposer.org/installer | php
- wget http://s3.amazonaws.com/influxdb/influxdb_latest_amd64.deb
- sudo dpkg -i influxdb_latest_amd64.deb
- travis_retry sudo service influxdb restart
- php composer.phar install