From 64b62383e918c6888422f9818806d1d4f02cdeeb Mon Sep 17 00:00:00 2001 From: Sumanth Varambally Date: Tue, 11 Jun 2024 22:48:31 +0000 Subject: [PATCH] remove pytest --- .github/workflows/pytest.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/pytest.yml diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml deleted file mode 100644 index 2219c2b..0000000 --- a/.github/workflows/pytest.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Runs pytests and generates coverage report - -on: [pull_request] - -jobs: - - # This workflow contains a single job called "test" - run_pytest: - - runs-on: ubuntu-latest - - steps: - - name: Checkout repo - uses: actions/checkout@v3 - - - name: Install dependencies - run: | - pip install flake8 pytest pytest-cov - - - name: Build coverage file - run: | - pytest --cache-clear --cov=src tests/ > pytest-coverage.txt - - name: Comment coverage - uses: coroo/pytest-coverage-commentator@v1.0.2