Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more troubleshooting entry #1590

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions content/en/contribute/code/core/automated-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,20 @@ Try the following:
- Manually downloaded the images. To download images manually, you can use either docker-compose or docker:
- With docker, you'd do a docker pull <image tag> for every image you want to download.
- With docker-compose, you'd save all docker-compose files in a folder, do a docker-compose pull, and point to your files as a source. Read more on [docker compose pull](https://docs.docker.com/engine/reference/commandline/compose_pull/)

If you experience errors such as:

```
A user session timing out while running the test.
```

Try running the following commands:
- `docker system prune`
- `docker image prune -a`
- `docker volume prune -a`
- `docker network prune`

Repeat the above steps until all data has been deleted.


### Test Architecture
Expand Down
Loading