diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | doc/md/dev/Unit-tests.md | 15 |
2 files changed, 9 insertions, 10 deletions
@@ -85,6 +85,10 @@ all_tests: test locale_test_de_DE locale_test_en_US locale_test_fr_FR | |||
85 | @# --text doesn't work with phpunit 4.* (v5 requires PHP 5.6) | 85 | @# --text doesn't work with phpunit 4.* (v5 requires PHP 5.6) |
86 | @#$(BIN)/phpcov merge --text coverage/txt coverage | 86 | @#$(BIN)/phpcov merge --text coverage/txt coverage |
87 | 87 | ||
88 | ### download 3rd-party PHP libraries, including dev dependencies | ||
89 | composer_dependencies_dev: clean | ||
90 | composer install --prefer-dist | ||
91 | |||
88 | ## | 92 | ## |
89 | # Custom release archive generation | 93 | # Custom release archive generation |
90 | # | 94 | # |
diff --git a/doc/md/dev/Unit-tests.md b/doc/md/dev/Unit-tests.md index 25af82d7..fd286bf0 100644 --- a/doc/md/dev/Unit-tests.md +++ b/doc/md/dev/Unit-tests.md | |||
@@ -10,21 +10,16 @@ You can either use: | |||
10 | - a local version, downloadable [here](https://getcomposer.org/download/). | 10 | - a local version, downloadable [here](https://getcomposer.org/download/). |
11 | 11 | ||
12 | ```bash | 12 | ```bash |
13 | # system-wide version | 13 | # for Debian-based distros |
14 | $ composer install | 14 | sudo apt install composer |
15 | $ composer update | ||
16 | |||
17 | # local version | ||
18 | $ php composer.phar self-update | ||
19 | $ php composer.phar install | ||
20 | $ php composer.phar update | ||
21 | ``` | 15 | ``` |
22 | 16 | ||
17 | |||
23 | ## Install Shaarli dev dependencies | 18 | ## Install Shaarli dev dependencies |
24 | 19 | ||
25 | ```bash | 20 | ```bash |
26 | $ cd /path/to/shaarli | 21 | $ cd /path/to/shaarli |
27 | $ composer update | 22 | $ make composer_dependencies_dev |
28 | ``` | 23 | ``` |
29 | 24 | ||
30 | ## Install and enable Xdebug to generate PHPUnit coverage reports | 25 | ## Install and enable Xdebug to generate PHPUnit coverage reports |
@@ -34,7 +29,7 @@ $ composer update | |||
34 | 29 | ||
35 | ```bash | 30 | ```bash |
36 | # for Debian-based distros: | 31 | # for Debian-based distros: |
37 | sudo aptitude install php5-xdebug | 32 | sudo apt install php-xdebug |
38 | 33 | ||
39 | # for ArchLinux: | 34 | # for ArchLinux: |
40 | pacman -S xdebug | 35 | pacman -S xdebug |