diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2064607..e07d496 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -13,6 +13,8 @@ jobs: set -x whoami pwd - ls -la /app 2>&1 || ls -la / | head -10 - python3 --version - 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 + ls -la /app + - 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