Merge pull request #626 from Cloud-Code-AI/621-readme-cleanup #1
This file contains 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: Kaizen Unit Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.3.2 | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: Load cached venv | |
id: cached-poetry-dependencies | |
uses: actions/cache@v3 | |
with: | |
path: .venv | |
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} | |
- name: Install dependencies | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
run: | | |
poetry install --no-interaction --no-root | |
- name: Run Kaizen Unit Tests | |
uses: Cloud-Code-AI/[email protected] | |
id: kaizen_tests | |
- name: Generate test report | |
if: always() | |
run: | | |
echo "# Kaizen Unit Test Results" > test_report.md | |
echo "## Summary" >> test_report.md | |
echo "Total tests run: $(grep -oP 'Tests run: \K\d+' <<< "${{ steps.kaizen_tests.outputs.stdout }}" | awk '{sum += $1} END {print sum}')" >> test_report.md | |
echo "Total failures: $(grep -oP 'Failures: \K\d+' <<< "${{ steps.kaizen_tests.outputs.stdout }}" | awk '{sum += $1} END {print sum}')" >> test_report.md | |
echo "Total errors: $(grep -oP 'Errors: \K\d+' <<< "${{ steps.kaizen_tests.outputs.stdout }}" | awk '{sum += $1} END {print sum}')" >> test_report.md | |
echo "## Detailed Results" >> test_report.md | |
echo '```' >> test_report.md | |
echo "${{ steps.kaizen_tests.outputs.stdout }}" >> test_report.md | |
echo '```' >> test_report.md | |
- name: Upload test results | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: test-results | |
path: | | |
.kaizen/unittests/results | |
test_report.md | |
- name: Check for test failures | |
if: always() | |
run: | | |
if grep -q "Failures: [1-9]" <<< "${{ steps.kaizen_tests.outputs.stdout }}"; then | |
echo "There were test failures" | |
exit 1 | |
fi |