From 0f1efc358bfa11b181ff3cda096070af8568ac19 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 12:46:48 +0000 Subject: [PATCH] CI with explicit cd and exit --- .gitea/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b3ba053..ff8c8ab 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,7 +6,13 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Checkout and test + - name: Setup run: | set -x - pip3 install -e . && pip3 install pytest pytest-asyncio && pytest tests/ -v \ No newline at end of file + pip3 install -e /app + pip3 install pytest pytest-asyncio + - name: Run tests + run: | + cd /app + pytest tests/ -v + exit $? \ No newline at end of file