diff options
| author | Ülgen Sarıkavak <ulgensrkvk@gmail.com> | 2025-01-23 01:16:08 +0300 |
|---|---|---|
| committer | Baptiste Mispelon <bmispelon@gmail.com> | 2025-01-23 13:06:14 +0100 |
| commit | 5f9764f27d5f28d3d45f851eff1a2d6c79d867fc (patch) | |
| tree | 3334343ac9f0086e08663fd6207cb9a994c3562c /README.rst | |
| parent | 87cc4de75bccaf1fb1f5d2b33949b5633ff08a37 (diff) | |
Use "run --rm" instead of exec for tests in README
* exec requires a running container, "run --rm" starts a new one and deletes when the job is done
* exec requires the related container to stay healthy, "run --rm" run things on a separate container
Diffstat (limited to 'README.rst')
| -rw-r--r-- | README.rst | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -365,8 +365,8 @@ Running Locally with Docker 4. Run the tests:: - docker compose exec web tox - docker compose exec web python -m manage test + docker compose run --rm web tox + docker compose run --rm web python -m manage test Pre-commit checks ----------------- |
