Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.travis.yml - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97d004a4a73ce27b4423ed1ec5ffeab4c047dec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: php

# We want to test against 
php:
  - 5.5
  - 5.4
  - 5.3

env:
  matrix:
    - TEST_SUITE=PluginTests
    - TEST_SUITE=CoreTests
    - TEST_SUITE=IntegrationTests

script: phpunit --configuration phpunit.xml --testsuite $TEST_SUITE --coverage-text --colors

before_script:
  - mysql -e 'create database piwik_test;'
  - ./tests/travis.sh
  - ./tests/travis/setup_webserver.sh
  - cd tests/PHPUnit

notifications:
  irc:
    skip_join: true
    on_success: change
    channels:
      - "irc.freenode.org#piwik-dev"
    template:
      - "%{repository} (%{commit}) : %{message} %{foo} "
      - "Build details: %{build_url}"
  email:
    - piwik-builds@piwik.org