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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-09-25 19:29:28 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-09-25 19:29:28 +0400
commit1774c104812ccbcb4a0b368a55d9e39f628f2550 (patch)
tree43d59a67e23263d1a3ed6f58abd124af4d9ee114 /tests/travis
parent95d244e5189eb3f5490aa2c6dbf296ee1973a375 (diff)
refs #5940 starting to rename test suites
Diffstat (limited to 'tests/travis')
-rwxr-xr-xtests/travis/initiate_ui_tests.sh2
-rwxr-xr-xtests/travis/travis.sh4
-rwxr-xr-xtests/travis/upload_artifacts.sh2
3 files changed, 4 insertions, 4 deletions
diff --git a/tests/travis/initiate_ui_tests.sh b/tests/travis/initiate_ui_tests.sh
index c7c7e2e470..2530b5bbdd 100755
--- a/tests/travis/initiate_ui_tests.sh
+++ b/tests/travis/initiate_ui_tests.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# initiate UI tests before starting integration tests for php 5.5
-if [ "$TEST_SUITE" != "IntegrationTests" ] || [[ "$TRAVIS_PHP_VERSION" != 5\.5* ]]; then
+if [ "$TEST_SUITE" != "SystemTests" ] || [[ "$TRAVIS_PHP_VERSION" != 5\.5* ]]; then
echo "Not initiating UI tests (\$TEST_SUITE = $TEST_SUITE, \$TRAVIS_PHP_VERSION = $TRAVIS_PHP_VERSION)."
exit
fi
diff --git a/tests/travis/travis.sh b/tests/travis/travis.sh
index 69576a05c5..0a168e0e48 100755
--- a/tests/travis/travis.sh
+++ b/tests/travis/travis.sh
@@ -69,8 +69,8 @@ then
else
if [ "$COVERAGE" = "Integration" ]
then
- echo "Executing non Integration tests in test suite IntegrationTests..."
- phpunit --configuration phpunit.xml --testsuite IntegrationTests --exclude-group Integration --colors --coverage-clover $TRAVIS_BUILD_DIR/build/logs/clover-integration.xml || true
+ echo "Executing non Integration tests in test suite SystemTests..."
+ phpunit --configuration phpunit.xml --testsuite SystemTests --exclude-group System --colors --coverage-clover $TRAVIS_BUILD_DIR/build/logs/clover-integration.xml || true
elif [ "$COVERAGE" = "Core" ]
then
echo "Executing tests in test suite CoreTests..."
diff --git a/tests/travis/upload_artifacts.sh b/tests/travis/upload_artifacts.sh
index 98a3f4fffa..822fd795be 100755
--- a/tests/travis/upload_artifacts.sh
+++ b/tests/travis/upload_artifacts.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-if [ "$TEST_SUITE" = "IntegrationTests" ];
+if [ "$TEST_SUITE" = "SystemTests" ];
then
url="http://builds-artifacts.piwik.org/upload.php?auth_key=$ARTIFACTS_PASS&artifact_name=processed&branch=$TRAVIS_BRANCH&build_id=$TRAVIS_JOB_NUMBER"