From bf9340352c795b7e72399266e91d7cfd663aa2f2 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Mon, 1 Jun 2026 16:43:26 +0000 Subject: [PATCH] chore: added hint for xvfb-run mix test --- AGENTS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/AGENTS.md b/AGENTS.md index d85d42f..6100587 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -29,6 +29,7 @@ This document provides context and best practices for GitHub Copilot when workin - when changing the spec, validate the spec with the available command line tool. - you MUST run tests with command line tools at least once to capture compile errors in tests, do not use the integrated testing of vscode, as that blocks on compile errors - you MUST run build, test and check dialyzer messages and you MUST treet warnings as errors and fix them. we want clean builds, clean tests and clean dialyzer results +- on a headless Linux machine, you have to run tests with this command (if mix test complains about DISPLAX): xvfb-run mix test ---