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