From 1a2776bf1b0c031b56a45cc378e4fefe48082347 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hozza?= Date: Thu, 6 Apr 2023 14:55:39 +0200 Subject: [PATCH] Test: run all tests from test/run in CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In CI, we list specific tests from `test/run` to run them in parallel. This is different than what we do with tests in `test/mod` and `test/src`. It seems that as a result, we did not run tests from the following files in CI: - `test_devices.py` - `test_mount.py` Signed-off-by: Tomáš Hozza --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 459c7c08..9c547cc1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,9 @@ jobs: - "test.mod" - "test.run.test_assemblers" - "test.run.test_boot" + - "test.run.test_devices" - "test.run.test_executable" + - "test.run.test_mount" - "test.run.test_noop" - "test.run.test_sources" - "test.run.test_stages"