From a332e715b241fe829f63b56990619e42b8bd7a15 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 11:36:38 +0000 Subject: [PATCH] Debug CI - list files before running tests --- .gitea/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ef63a0f..16955bd 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -23,6 +23,12 @@ jobs: pip install -e . pip install pytest pytest-asyncio + - name: Debug - list files + run: | + ls -la + ls -la snip/ + ls -la tests/ + - name: Run tests run: | - pytest tests/ -v \ No newline at end of file + pytest tests/ -v --tb=short \ No newline at end of file