diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-04-13 09:43:14 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-04-13 09:43:14 +0200 |
commit | f2e5fdc3666a2a6525b4202ab48df05efeebaf5c (patch) | |
tree | f559474e248a33c472fe0b260641866be5c0def3 /build.xml | |
parent | a417b869237763ee115982d6367a82aa6174d74e (diff) | |
parent | 86732aa01cf0ad0fb5279f38ce75a9bedbbb66e1 (diff) | |
download | wallabag-f2e5fdc3666a2a6525b4202ab48df05efeebaf5c.tar.gz wallabag-f2e5fdc3666a2a6525b4202ab48df05efeebaf5c.tar.zst wallabag-f2e5fdc3666a2a6525b4202ab48df05efeebaf5c.zip |
Merge pull request #1916 from wallabag/cleanup
Convert array + phpDoc
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -42,8 +42,8 @@ | |||
42 | <target name="db_mysql" description="Run test for MySQL"> | 42 | <target name="db_mysql" description="Run test for MySQL"> |
43 | <delete dir="${basedir}/app/config/parameters.yml"/> | 43 | <delete dir="${basedir}/app/config/parameters.yml"/> |
44 | <exec executable="cp"> | 44 | <exec executable="cp"> |
45 | <arg value="${basedir}/app/config/tests/parameters.yml.dist.mysql"/> | 45 | <arg value="${basedir}/app/config/tests/parameters_test.mysql.yml"/> |
46 | <arg value="${basedir}/app/config/parameters.yml"/> | 46 | <arg value="${basedir}/app/config/parameters_test.yml"/> |
47 | </exec> | 47 | </exec> |
48 | 48 | ||
49 | <exec executable="php"> | 49 | <exec executable="php"> |
@@ -56,8 +56,8 @@ | |||
56 | <target name="db_sqlite" description="Run test for SQLite"> | 56 | <target name="db_sqlite" description="Run test for SQLite"> |
57 | <delete dir="${basedir}/app/config/parameters.yml"/> | 57 | <delete dir="${basedir}/app/config/parameters.yml"/> |
58 | <exec executable="cp"> | 58 | <exec executable="cp"> |
59 | <arg value="${basedir}/app/config/tests/parameters.yml.dist.sqlite"/> | 59 | <arg value="${basedir}/app/config/tests/parameters_test.sqlite.yml"/> |
60 | <arg value="${basedir}/app/config/parameters.yml"/> | 60 | <arg value="${basedir}/app/config/parameters_test.yml"/> |
61 | </exec> | 61 | </exec> |
62 | 62 | ||
63 | <exec executable="php"> | 63 | <exec executable="php"> |
@@ -70,8 +70,8 @@ | |||
70 | <target name="db_pgsql" description="Run test for PostgreSQL"> | 70 | <target name="db_pgsql" description="Run test for PostgreSQL"> |
71 | <delete dir="${basedir}/app/config/parameters.yml"/> | 71 | <delete dir="${basedir}/app/config/parameters.yml"/> |
72 | <exec executable="cp"> | 72 | <exec executable="cp"> |
73 | <arg value="${basedir}/app/config/tests/parameters.yml.dist.pgsql"/> | 73 | <arg value="${basedir}/app/config/tests/parameters_test.pgsql.yml"/> |
74 | <arg value="${basedir}/app/config/parameters.yml"/> | 74 | <arg value="${basedir}/app/config/parameters_test.yml"/> |
75 | </exec> | 75 | </exec> |
76 | 76 | ||
77 | <exec executable="php"> | 77 | <exec executable="php"> |