From 43989c11bbbef1156b1992add802b65fbb8fbe9b Mon Sep 17 00:00:00 2001 From: Fabian Gebhart <16943048+fgebhart@users.noreply.github.com> Date: Wed, 4 Dec 2024 16:16:54 +0100 Subject: [PATCH] update github actions file to have color and rename action --- .github/workflows/integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 0f482e0..6f1ff71 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -1,4 +1,4 @@ -name: Test things on pushes +name: Test on: [push, pull_request] @@ -24,7 +24,7 @@ jobs: poetry run mypy tests --ignore-missing-imports - name: Run tests run: | - poetry run pytest + poetry run pytest --color=yes env: TEST_API_URL: ${{ secrets.TEST_API_URL }} TEST_TOKEN: ${{ secrets.TEST_TOKEN }}