-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisabled.travis.yml
74 lines (64 loc) · 1.87 KB
/
disabled.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
70
71
72
73
74
language: php
php:
- 7.2
- 7.3
env:
- TYPO3_VERSION=^8.7 COVERAGE=0 FUNCTIONAL_TEST=1
services:
- mysql
notifications:
email:
on_success: never
on_failure: never
sudo: false
addons:
apt:
packages:
- parallel
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
- composer --version
before_script:
# Installs TYPO3
- composer require typo3/cms=$TYPO3_VERSION
# Restore composer.json
- git checkout composer.json
- export "TYPO3_PATH_WEB"=$PWD/.Build/Web;
# Locating UnitTests.xml
- export "UNIT_XML"='.Build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml'
# Symlink TYPO3-Core
- ln -nfs .Build/vendor/typo3/cms/typo3 typo3
script:
- >
if [[ "$COVERAGE" == "0" ]]; then
echo;
echo "Running unit tests";
.Build/bin/phpunit --colors -c $UNIT_XML Tests/Unit
fi
- >
if [[ "$FUNCTIONAL_TEST" == "1" ]]; then
echo;
echo "Running functional tests";
export typo3DatabaseName="test" typo3DatabaseHost="127.0.0.1" typo3DatabaseUsername="root" typo3DatabasePassword=""
.Build/bin/phpunit --colors -c .Build/vendor/nimut/testing-framework/res/Configuration/FunctionalTests.xml Tests/Functional
fi
- >
if [[ "$COVERAGE" == "1" ]]; then
echo;
echo "Running unit tests";
.Build/bin/phpunit --coverage-clover=unittest-coverage.clover --colors -c $UNIT_XML Tests/Unit
fi
- >
if [[ "$COVERAGE" == "1" ]]; then
echo;
echo "Uploading code coverage results";
wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover unittest-coverage.clover
fi
- >
echo;
echo "Running php lint";
find . -name \*.php ! -path "./.Build/*" ! -path "./scripts/*" ! -path "./typo3_src/*" | parallel --gnu php -d display_errors=stderr -l {} > /dev/null \;