aboutsummaryrefslogtreecommitdiff
path: root/docs/fr/developers/03_Running_tests.md
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2021-03-15 00:00:25 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2021-03-15 00:00:25 +0100
commit1c3159058fd256ec7163a29c9865dbd3dbe05f17 (patch)
tree5b3a9df3cc709a4b370f6f03cf79c50483275344 /docs/fr/developers/03_Running_tests.md
parent769f34e958b50e748acf6a151805f4a255df2043 (diff)
Quick update the doc for master renaming to edge
Diffstat (limited to 'docs/fr/developers/03_Running_tests.md')
-rw-r--r--docs/fr/developers/03_Running_tests.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/fr/developers/03_Running_tests.md b/docs/fr/developers/03_Running_tests.md
index 70aafc02a..90a4b72ef 100644
--- a/docs/fr/developers/03_Running_tests.md
+++ b/docs/fr/developers/03_Running_tests.md
@@ -1,15 +1,15 @@
# Running tests
FreshRSS is tested with [PHPUnit](https://phpunit.de/). No code should be
-merged in `master` if the tests don't pass.
+merged in `edge` if the tests don't pass.
## Locally
As a developer, you can run the test suite on your PC easily with `make`
commands. You can run the test suite with:
-```console
-$ make test
+```sh
+make test
```
This command downloads the PHPUnit binary and verifies its checksum. If the
@@ -20,8 +20,8 @@ maintainers know about the problem.
Then, it executes PHPUnit in a Docker container. If you don't use Docker,
you can run the command directly with:
-```console
-$ NO_DOCKER=true make test
+```sh
+NO_DOCKER=true make test
```
## Travis
@@ -32,4 +32,4 @@ done to ensure there is no regressions in your code. We cannot merge a PR if
the tests fail so we'll ask you to fix bugs before to review your code.
If you're interested in, you can take a look at [the configuration
-file](https://github.com/FreshRSS/FreshRSS/blob/master/.travis.yml).
+file](https://github.com/FreshRSS/FreshRSS/blob/edge/.travis.yml).