Skip to content

Commit

Permalink
cleaning catched data
Browse files Browse the repository at this point in the history
  • Loading branch information
Greeshmashaji committed Feb 7, 2025
1 parent bde90a3 commit 3f2bb53
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ jobs:

- name: Install Dependencies
run: pip install -r .settings/requirements_full.txt

- name: Clean Python Cache
run: |
echo "Cleaning __pycache__ and *.pyc files..."
find . -type d -name "__pycache__" -exec rm -rf {} +
find . -type f -name "*.pyc" -delete
rm -rf .pytest_cache
- name: Set PYTHONPATH
run: |
echo "PYTHONPATH=$(pwd)/src" >> $GITHUB_ENV
echo "Current PYTHONPATH: $PYTHONPATH"
- name: Run Unit Tests
run: python -m unittest discover . > unittest_results.log
Expand Down

0 comments on commit 3f2bb53

Please sign in to comment.