From ea8e5aae0af89c4b4ec437ebc265cd589ec7ab61 Mon Sep 17 00:00:00 2001 From: Martin Kozlovsky Date: Wed, 25 Sep 2024 09:17:01 +0200 Subject: [PATCH] simplified pytest action --- .github/workflows/ci.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e405bce1..e234640e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -98,16 +98,13 @@ jobs: token_format: access_token - name: Run pytest - uses: pavelzw/pytest-action@v2 env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} AWS_S3_ENDPOINT_URL: ${{ secrets.AWS_S3_ENDPOINT_URL }} LUXONISML_BUCKET: luxonis-test-bucket - with: - emoji: false - custom-arguments: > - --cov --junitxml=junit.xml -o junit_family=legacy + run: + pytest --cov --junitxml=junit.xml -o junit_family=legacy - name: Upload test results to Codecov if: ${{ !cancelled() }}