From 79f3c791daf276ab5b0ced838f0d1e0467174636 Mon Sep 17 00:00:00 2001 From: Kush Zingade Date: Tue, 25 Aug 2026 01:54:02 +0800 Subject: [PATCH] docs: unit tests run on Ubuntu only, not MacOS docs/ci.md claimed unit tests run 'with Python 3.11 - 3.13 on Ubuntu and MacOS runners'. unit.yaml's matrix is platform: [ubuntu-latest] only; there is no macOS runner. Fixes the doc to match the workflow it links to. Adding an actual macOS leg is a separate, maintainer-level decision (extra CI cost) and out of scope here. Ref: https://github.com/instructlab/training/issues/705 Co-Authored-By: Claude Fable 5 Signed-off-by: Kush Zingade --- docs/ci.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ci.md b/docs/ci.md index fdd0fb6d..bd97d9ff 100644 --- a/docs/ci.md +++ b/docs/ci.md @@ -10,7 +10,7 @@ All unit tests currently live in the `tests/unit` directory and are run with [py To run the unit tests, you can run `tox -e py3-unit`. -In CI, the tests are run with Python 3.11 - 3.13 on Ubuntu and MacOS runners - you can see the details [in the unit tests workflow file](https://github.com/instructlab/training/blob/main/.github/workflows/unit.yaml). +In CI, the tests are run with Python 3.11 - 3.13 on Ubuntu runners - you can see the details [in the unit tests workflow file](https://github.com/instructlab/training/blob/main/.github/workflows/unit.yaml). ## Smoke tests