Skip to content
Merged
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
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,18 @@ Running system-tests involves a few key steps:
# Activate the virtual environment
source venv/bin/activate
```
> **macOs note** If the `build.sh` script fails due to a missing `timeout` command, it likely means you did not run the Datadog laptop setup [script](https://datadoghq.atlassian.net/wiki/spaces/EE1/pages/3334374707/Laptop+Setup+Script)
>
> Quick fix:
> ```bash
> brew install coreutils
> ```
> Update your command-line settings with:
> ```bash
> # Prefer GNU binaries to Macintosh binaries.
> export PATH="{{ homebrew_dir }}/opt/coreutils/libexec/gnubin:$PATH"
> ```

2. **Build necessary images** for the language you want to test:

```bash
Expand Down
Loading