Skip to content

Commit

Permalink
fix: space issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ArslanSaleem committed Jan 9, 2025
1 parent 4669f39 commit 098d685
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/ci-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ jobs:
cd "$dir" || exit
poetry run pytest tests/
)
echo "Removing envs"
(
cd "$dir" || exit
poetry env list --all | awk '{print $1}' | xargs -n 1 poetry env remove
)
fi
done
Expand All @@ -82,6 +87,11 @@ jobs:
cd "$dir" || exit
poetry run pytest tests/
)
echo "Removing envs"
(
cd "$dir" || exit
poetry env list --all | awk '{print $1}' | xargs -n 1 poetry env remove
)
fi
done
Expand All @@ -100,6 +110,11 @@ jobs:
cd "$dir" || exit
poetry run pytest tests/
)
echo "Removing envs"
(
cd "$dir" || exit
poetry env list --all | awk '{print $1}' | xargs -n 1 poetry env remove
)
fi
done
Expand Down Expand Up @@ -144,8 +159,7 @@ jobs:
- name: Run code coverage for extensions
continue-on-error: true
run: |
poetry lock --no-update
poetry add coverage --dev
pip install coverage
poetry run coverage run --source=extensions -m pytest tests extensions/*/tests
poetry run coverage xml
Expand Down

0 comments on commit 098d685

Please sign in to comment.