From c7659d1aeb05c9bc47e3f399610ad5b2340486b9 Mon Sep 17 00:00:00 2001 From: Dhanush Kovi <99819848+dkvc@users.noreply.github.com> Date: Fri, 7 Jul 2023 00:08:33 +0530 Subject: [PATCH] chore: Remove pytest from python-publish.yml --- .github/workflows/python-publish.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 0e86501..7e4d588 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -4,7 +4,6 @@ # - test: (on supported python versions) # Analyze code with Pylint # Validate pyproject.toml for errors -# Test with pytest # - build-n-publish: Build and Publish Python package # to PyPI. @@ -83,10 +82,6 @@ jobs: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi pip install pytest - - name: Test with pytest - run: | - pytest -v . - build-n-publish: needs: test