Skip to content

Commit

Permalink
experiment: seeing what the targets before the actual check
Browse files Browse the repository at this point in the history
  • Loading branch information
trentonyo committed Mar 18, 2024
1 parent 1373d89 commit f287d5e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/todoon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install typer
python -m pip install -i https://test.pypi.org/simple/ todo-or-not==0.7.14b0
python -m pip install -i https://test.pypi.org/simple/ todo-or-not==0.7.15b0
- name: Generate GH Token
id: generate-token
uses: actions/create-github-app-token@v1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "todo-or-not"
version = "0.7.14-beta"
version = "0.7.15-beta"
description = "#todoon integrates the TODOs in your codebase with your GitHub repository"
authors = ["TrentonYo <trentonyo@gmail.com>"]
license = "GPL-3.0-only"
Expand Down
2 changes: 2 additions & 0 deletions todo_or_not/todo_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,8 @@ def main(
# Used for summary
number_of_todo, number_of_fixme = 0, 0

print("** DEBUG: ABOUT TO START THE CHECK...\n HERE'S THE TARGETS:", targets, file=sys.stderr)

# For each target file discovered
for target in targets:
# Generate the hits for each target collected
Expand Down

0 comments on commit f287d5e

Please sign in to comment.