From 38fdebcce9ae5a947ce8ebf4f6225d70754b43ff Mon Sep 17 00:00:00 2001 From: Vatsal Jagani Date: Mon, 11 Mar 2024 17:00:10 +0530 Subject: [PATCH] Small ruff issue fixed. --- .github/workflows/py_unit_tests.yml | 2 +- tests/test_integration.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/py_unit_tests.yml b/.github/workflows/py_unit_tests.yml index 6ccb063..d4fbc44 100644 --- a/.github/workflows/py_unit_tests.yml +++ b/.github/workflows/py_unit_tests.yml @@ -38,7 +38,7 @@ jobs: run: pytest tests --junitxml=junit/test-results.xml --cov=src --cov-config=tests/.coveragerc --cov-report=xml - name: Adding GitHub action step summary - uses: VatsalJagani/pytest-cov-action@v0.5 + uses: VatsalJagani/pytest-cov-action@v0.6 with: pytest_results_file: "junit/test-results.xml" pytest_cov_file: "coverage.xml" diff --git a/tests/test_integration.py b/tests/test_integration.py index b74a81a..7886ce6 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -9,7 +9,6 @@ import unittest from unittest.mock import patch -import pytest import os import sys @@ -18,7 +17,6 @@ from contextlib import contextmanager from main import main -from helpers.github_action_utils import set_env @contextmanager