Skip to content

Commit

Permalink
Remove the unused workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadAlfhajri committed Dec 23, 2024
1 parent 042e336 commit 8596015
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 77 deletions.
77 changes: 1 addition & 76 deletions .github/workflows/ios-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,79 +68,4 @@ jobs:
uses: kishikawakatsumi/xcresulttool@v1
with:
path: TestResults.xcresult
if: success() || failure()

# - name: Generate Test Report
# if: success() || failure()
# run: |
# xcrun xcresulttool get --format json --path TestResults.xcresult > test_report.json
# xcrun xccov view --report --json TestResults.xcresult > coverage_report.json

# - name: Upload test results
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: test-results
# path: |
# TestResults.xcresult/**/*
# test_report.json
# coverage_report.json
# if-no-files-found: error

# - name: Create Test Summary
# if: always()
# run: |
# echo "### Test Results Summary" >> $GITHUB_STEP_SUMMARY
# echo "---" >> $GITHUB_STEP_SUMMARY
# echo "Using destination: ${{ steps.get-destination.outputs.DESTINATION }}" >> $GITHUB_STEP_SUMMARY

# if [ -f "TestResults.xcresult" ]; then
# # Get test results summary
# echo "### Test Results" >> $GITHUB_STEP_SUMMARY
# xcrun xcresulttool get --format human-readable --path TestResults.xcresult >> $GITHUB_STEP_SUMMARY

# # Get failed tests if any
# echo "### Failed Tests" >> $GITHUB_STEP_SUMMARY
# xcrun xcresulttool get --format json --path TestResults.xcresult | \
# jq -r '.. | select(.identifier? == "com.apple.xcode.tests.failed")? | .._message?' >> $GITHUB_STEP_SUMMARY

# # Get code coverage if enabled
# echo "### Code Coverage" >> $GITHUB_STEP_SUMMARY
# xcrun xccov view --report --json TestResults.xcresult | \
# jq -r '.targets[] | "- \(.name): \(.lineCoverage)%"' >> $GITHUB_STEP_SUMMARY
# else
# echo "❌ No test results found" >> $GITHUB_STEP_SUMMARY
# fi

# - name: Comment PR with Results
# if: github.event_name == 'pull_request'
# uses: actions/github-script@v6
# with:
# script: |
# const fs = require('fs');
# const testReport = JSON.parse(fs.readFileSync('test_report.json', 'utf8'));

# let message = '';
# const failures = testReport.actions.testsRef.tests
# .filter(test => test.status === 'Failure')
# .map(test => `- ${test.identifier}: ${test.message}`);

# if (failures.length > 0) {
# message = `### ❌ Test Failures\n\n${failures.join('\n')}`;
# } else {
# const coverage = JSON.parse(fs.readFileSync('coverage_report.json', 'utf8'));
# const coverageSummary = coverage.targets
# .map(target => `- ${target.name}: ${(target.lineCoverage * 100).toFixed(2)}%`)
# .join('\n');

# message = `### ✅ All Tests Passed!\n\n` +
# `**Code Coverage:**\n${coverageSummary}\n\n` +
# `Total tests: ${testReport.actions.testsRef.tests.length}`;
# }

# github.rest.issues.createComment({
# owner: context.repo.owner,
# repo: context.repo.repo,
# issue_number: context.issue.number,
# body: message
# });
if: success() || failure()
1 change: 0 additions & 1 deletion Tests/XenditTests/XenditIntegrationTestsV3.swift
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,6 @@ private extension XenditIntegrationTestsV3 {
tokenizationRequest.midLabel = midLabel
}

//TODO: Will add flag for this
Xendit.createToken(
fromViewController: viewController,
tokenizationRequest: tokenizationRequest,
Expand Down

0 comments on commit 8596015

Please sign in to comment.