Retrieve SQL Database and Managed Identity information #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Workflow with Coverage - Client Advisor | |
on: | |
push: | |
branches: [main, dev] | |
# Trigger on changes in these specific paths | |
pull_request: | |
branches: [main, dev] | |
types: | |
- opened | |
- ready_for_review | |
- reopened | |
- synchronize | |
jobs: | |
test_client_advisor: | |
name: Client Advisor Tests | |
runs-on: ubuntu-latest | |
# The if condition ensures that this job only runs if changes are in the ClientAdvisor folder | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Install Frontend Dependencies | |
run: | | |
cd src/App/frontend | |
npm install | |
- name: Run Frontend Tests with Coverage | |
run: | | |
cd src/App/frontend | |
npm run test -- --coverage | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: client-advisor-frontend-coverage | |
path: | | |
src/App/frontend/coverage/ | |
src/App/frontend/coverage/lcov-report/ | |
src/App/htmlcov/ | |
- name: Install Backend Dependencies | |
run: | | |
cd src/App | |
python -m pip install -r requirements.txt | |
python -m pip install coverage pytest-cov | |
- name: Run Backend Tests with Coverage | |
run: | | |
cd src/App | |
python -m pytest -vv --cov=. --cov-report=xml --cov-report=html --cov-report=term-missing --cov-fail-under=80 --junitxml=coverage-junit.xml | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: client-advisor-coverage | |
path: | | |
src/App/coverage.xml | |
src/App/coverage-junit.xml | |
src/App/htmlcov/ |