Skip to content

Commit

Permalink
Merge pull request #26 from MIT-Emerging-Talent/main
Browse files Browse the repository at this point in the history
update commits
  • Loading branch information
Moealfadil authored Dec 28, 2024
2 parents 727f065 + 3bea277 commit 2818385
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,13 @@ jobs:
- name: Check for test files
id: check_tests
run: |
if find . -type f -name "test_*.py" | grep -q .; then
test_files=$(find ./solutions/tests -type f -name "test_*.py")
if [ -n "$test_files" ]; then
echo "Found test files:"
echo "$test_files"
echo "has_tests=true" >> $GITHUB_OUTPUT
else
echo "No test files found matching pattern ./solutions/tests/test_*.py"
echo "has_tests=false" >> $GITHUB_OUTPUT
fi
shell: bash
Expand Down
1 change: 1 addition & 0 deletions solutions/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions solutions/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

0 comments on commit 2818385

Please sign in to comment.