diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 9d4a745..ac5288f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,11 +6,11 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Setup and test + - name: Debug run: | - #!/bin/bash - set -e - pip3 install -e /app - pip3 install pytest pytest-asyncio - cd /app - pytest tests/ -v \ No newline at end of file + set -x + whoami + pwd + ls -la /app + - name: Install and test + run: pip3 install -e /app && pip3 install pytest pytest-asyncio && pytest /app/tests/ -v || echo "Test command failed with code $?" \ No newline at end of file