summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-03-26 22:26:01 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2016-03-27 14:53:29 +0200
commit04c1c8d3bd216a2195668cb06797079802c4fe44 (patch)
tree6e8ca32f2be56788f362eba68faddc69c84a2dca /tests
parentf2181c00552a0d79b9c6fac54fe416b8a5b307f4 (diff)
add common makefile, make it possible to run tests and build package without installing global libs, enhance travis build file to also run php tests, add dev docs
fix indention fix copyright exclude gulpfile from appstore build also generate coverage when phpunit exsits in path remove breaking codecov from test run codecov after success, use previous make package run test suite instead of build try without sudo another try without sudo switch from mariadb to mysql mysql server seems to be present out of the box
Diffstat (limited to 'tests')
-rw-r--r--tests/bootstrap.php12
-rw-r--r--tests/travis/php.ini2
2 files changed, 12 insertions, 2 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php
new file mode 100644
index 00000000..8fcc88e9
--- /dev/null
+++ b/tests/bootstrap.php
@@ -0,0 +1,12 @@
+<?php
+/**
+ * ownCloud - contacts
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2016
+ */
+
+require_once __DIR__ . '/../../../tests/bootstrap.php';
diff --git a/tests/travis/php.ini b/tests/travis/php.ini
deleted file mode 100644
index 3b365b09..00000000
--- a/tests/travis/php.ini
+++ /dev/null
@@ -1,2 +0,0 @@
-default_charset = "UTF-8"
-always_populate_raw_post_data = -1 \ No newline at end of file