Skip to content

Commit

Permalink
update testing
Browse files Browse the repository at this point in the history
  • Loading branch information
debpal committed Nov 26, 2024
1 parent b46a2e0 commit 0111217
Show file tree
Hide file tree
Showing 5 changed files with 286 additions and 35 deletions.
42 changes: 34 additions & 8 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,18 @@ on:
- '**/*.py' # Trigger only for changes in Python files

jobs:
build:
test-python-3-12:
name: Test with Python 3.12
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]

steps:
- name: Checkout repository
uses: actions/checkout@v4 # This checks out your code to the runner

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python 3.12
uses: actions/setup-python@v3 # Sets up the specified Python version
with:
python-version: ${{ matrix.python-version }}
python-version: "3.12"

- name: Install dependencies
run: |
Expand All @@ -39,7 +36,36 @@ jobs:
export PYTHONPATH=$(pwd)
pytest --cov=BharatFinTrack --cov-report=xml # Run tests and generate coverage report in XML format
- name: Upload coverage to Codecov # Upload coverage report to Codecov
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }} # This secret token should be added in your repository settings

test-python-3-11:
name: Test with Python 3.11
runs-on: ubuntu-latest
needs: test-python-3-12 # Runs only after the Python 3.12 tests complete

steps:
- name: Checkout repository
uses: actions/checkout@v4 # This checks out your code to the runner

- name: Set up Python 3.11
uses: actions/setup-python@v3 # Sets up the specified Python version
with:
python-version: "3.11"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-gh-action.txt # Install dependencies
- name: Run tests with pytest
run: |
export PYTHONPATH=$(pwd)
pytest --cov=BharatFinTrack --cov-report=xml # Run tests and generate coverage report in XML format
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }} # This secret token should be added in your repository settings
Loading

0 comments on commit 0111217

Please sign in to comment.