diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index b8cc25c..399279e 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -44,8 +44,9 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements-dev.txt + pip list - name: Run tests - run: pytest -q tests -v + run: pytest tests -v --tb=short type-check: runs-on: [linux, docker] diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index ff62b46..068d1be 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -43,8 +43,9 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements-dev.txt + pip list - name: Run tests - run: pytest -q tests -v + run: pytest tests -v --tb=short type-check: runs-on: [linux, docker] @@ -59,8 +60,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install mypy - pip install -r requirements.txt + pip install -r requirements-dev.txt - name: Run mypy run: mypy app scripts --ignore-missing-imports