From fd739e87c16bf8270bb9f037687ba737239045ef Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Tue, 11 Nov 2025 10:37:28 +0530 Subject: [PATCH] Don't run pytest in isolated mode in pip workflow --- .github/workflows/pip.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index fbba4aa..c5b498f 100644 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -48,4 +48,4 @@ jobs: run: python -I -c "import pylibbpf; print('Import successful')" - name: Test - run: python -I -m pytest -v + run: python -m pytest -v