Skip to content

Commit 8fe6caf

Browse files
committed
traceback fixed
1 parent 63f9746 commit 8fe6caf

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/main-tests.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ jobs:
3939
run: |
4040
python main.py --commits -l test_list.txt -o output_commits.csv -t ${{ secrets.GITHUB_TOKEN }}
4141
42+
- name: List files after main.py (commits)
43+
run: |
44+
ls -l
45+
cat output_commits.csv || echo 'output_commits.csv not found'
46+
4247
- name: Compare output with reference CSV (commits)
4348
run: |
4449
python compare_csv.py output_commits.csv .github/workflows/reference_commits.csv
@@ -47,6 +52,11 @@ jobs:
4752
run: |
4853
python main.py --contributors -l test_list.txt -o output_contributors.csv -t ${{ secrets.GITHUB_TOKEN }}
4954
55+
- name: List files after main.py (contributors)
56+
run: |
57+
ls -l
58+
cat output_contributors.csv || echo 'output_contributors.csv not found'
59+
5060
- name: Compare output with reference CSV (contributors)
5161
run: |
5262
python compare_csv.py output_contributors.csv .github/workflows/reference_contributors.csv
@@ -55,6 +65,11 @@ jobs:
5565
run: |
5666
python main.py --issues -l test_list.txt -o output_issues.csv -t ${{ secrets.GITHUB_TOKEN }}
5767
68+
- name: List files after main.py (issues)
69+
run: |
70+
ls -l
71+
cat output_issues.csv || echo 'output_issues.csv not found'
72+
5873
- name: Compare output with reference CSV (issues)
5974
run: |
6075
python compare_csv.py output_issues.csv .github/workflows/reference_issues.csv
@@ -63,6 +78,11 @@ jobs:
6378
run: |
6479
python main.py --pulls -l test_list.txt -o output_pulls.csv -t ${{ secrets.GITHUB_TOKEN }}
6580
81+
- name: List files after main.py (pulls)
82+
run: |
83+
ls -l
84+
cat output_pulls.csv || echo 'output_pulls.csv not found'
85+
6686
- name: Compare output with reference CSV (pulls)
6787
run: |
6888
python compare_csv.py output_pulls.csv .github/workflows/reference_pulls.csv

0 commit comments

Comments
 (0)