forked from YetiForceCompany/YetiForceCRM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
69 lines (59 loc) · 1.6 KB
/
.travis.yml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
sudo: required
dist: trusty
language: php
php:
- 7.1
- 7.0
- 5.6
- nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: nightly
branches:
only:
- developer
services:
- mysql
mysql:
database: yetiforce
username: root
encoding: utf8
before_script:
- |
if [[ ${TRAVIS_PHP_VERSION:0:3} == "5.6" ]]; then
sudo wget https://phar.phpunit.de/phpunit-5.7.phar
sudo chmod +x phpunit-5.7.phar
sudo mv phpunit-5.7.phar /usr/local/bin/phpunit
else
sudo wget https://phar.phpunit.de/phpunit-6.2.phar
sudo chmod +x phpunit-6.2.phar
sudo mv phpunit-6.2.phar /usr/local/bin/phpunit
fi
- /usr/local/bin/phpunit --version
- composer install
- sudo wget https://scrutinizer-ci.com/ocular.phar
- sudo chmod +x ocular.phar
- sudo mv ocular.phar /usr/local/bin/ocular
- mysql -e "SET GLOBAL sql_mode = 'NO_ENGINE_SUBSTITUTION'"
- mysql -e "create database IF NOT EXISTS yetiforce;" -uroot
- cp tests/config.inc.txt config/config.inc.php
- cp tests/debug.txt config/debug.php
- cp tests/developer.txt config/developer.php
- cp tests/.htaccess .htaccess
script:
- cd tests
- /usr/local/bin/phpunit --debug --verbose --coverage-text --coverage-clover=coverage.clover
after_script:
- cd ..
- cat tests/LoginPage.txt
- cat tests/DetailView.txt
- cat tests/EditView.txt
- cat tests/records.log
- cat cache/logs/request.log
- cat cache/logs/phpError.log
- cat cache/logs/system.log
- cat cache/logs/Importer.log
- php ocular code-coverage:upload --format=php-clover coverage.clover
- bash <(curl -s https://codecov.io/bash)