## Customize the test machine
machine:

  # Override /etc/hosts

  # Add some environment variables
  environment:
    CIRCLE_ENV: test
    WP_VERSION: trunk

## Customize dependencies
dependencies:
  pre:
    - sudo apt-get update; sudo apt-get install subversion
    - bash bin/install-wp-tests.sh wordpress_test ubuntu '' 127.0.0.1 $WP_VERSION
    - composer install

## Customize test commands
test:
  override:
    - phpunit
    - composer phpcs


