From b1166636c0f483d7222ad7c180867c8edfb9b26b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 12:42:21 +0000 Subject: [PATCH] CI with separate steps --- .gitea/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index fd20da1..60f30ab 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,5 +12,7 @@ jobs: whoami pwd ls -la /app - - name: Install and test - run: pip3 install -e /app && pip3 install pytest pytest-asyncio && pytest /app/tests/ -v || echo "Tests completed with code $?" \ No newline at end of file + - name: Install + run: pip3 install -e /app && pip3 install pytest pytest-asyncio + - name: Run tests + run: pytest /app/tests/ -v \ No newline at end of file