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