🚚 Move location of scripts to simplify file structure (#1352)

This commit is contained in:
Sebastián Ramírez
2024-09-22 18:19:57 +02:00
committed by GitHub
parent 68a7fe0899
commit 87254dd79e
9 changed files with 18 additions and 22 deletions

View File

@@ -106,15 +106,15 @@ If you use GitHub Actions the tests will run automatically.
If your stack is already up and you just want to run the tests, you can use:
```bash
docker compose exec backend bash /app/tests-start.sh
docker compose exec backend bash scripts/tests-start.sh
```
That `/app/tests-start.sh` script just calls `pytest` after making sure that the rest of the stack is running. If you need to pass extra arguments to `pytest`, you can pass them to that command and they will be forwarded.
That `/app/scripts/tests-start.sh` script just calls `pytest` after making sure that the rest of the stack is running. If you need to pass extra arguments to `pytest`, you can pass them to that command and they will be forwarded.
For example, to stop on first error:
```bash
docker compose exec backend bash /app/tests-start.sh -x
docker compose exec backend bash scripts/tests-start.sh -x
```
### Test Coverage