Skip to content

Commit 5e66686

Browse files
committed
correct project name
1 parent a48bcfa commit 5e66686

7 files changed

Lines changed: 8 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: uv run radon cc src/ --min C
4646

4747
- name: Run tests
48-
run: uv run pytest --cov=src/appimage_updater --cov-report=xml --cov-report=term-missing --dist=no
48+
run: uv run pytest --cov=src/taskfile_help --cov-report=xml --cov-report=term-missing --dist=no
4949

5050
- name: Upload coverage reports to Codecov
5151
if: matrix.python-version == '3.11'

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
environment:
4545
name: pypi
46-
url: https://pypi.org/p/appimage-updater
46+
url: https://pypi.org/p/taskfile_help
4747
permissions:
4848
id-token: write # IMPORTANT: mandatory for trusted publishing
4949
contents: read # IMPORTANT: mandatory for trusted publishing

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,6 @@ cython_debug/
168168
# uv
169169
.uv/
170170

171-
# Downloaded AppImages
172-
downloads/
173-
*.AppImage
174-
175171
# GitHub tokens and credentials (NEVER COMMIT)
176172
*token*.json
177173
*github-token*

Makefile.ci

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.PHONY: help ci-local ci-docker ci-debug ci-test-only ci-build-only ci-clean
33

44
help: ## Show this help message
5-
@echo "🔧 AppImage Updater - CI Simulation Commands"
5+
@echo "🔧 Taskfile Help - CI Simulation Commands"
66
@echo "============================================="
77
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
88

@@ -20,7 +20,7 @@ ci-debug: ## Debug environment differences
2020

2121
ci-test-only: ## Run only tests (skip linting/formatting)
2222
@echo "🧪 Running tests only..."
23-
uv run pytest --cov=src/appimage_updater --cov-report=xml --cov-report=term-missing
23+
uv run pytest --cov=src/taskfile_help --cov-report=xml --cov-report=term-missing
2424

2525
ci-e2e-only: ## Run only E2E tests
2626
@echo "🎯 Running E2E tests only..."

docker/ci-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ if [ $# -eq 0 ]; then
4444
run_step "Linting" "uv run ruff check src/" || exit 1
4545
run_step "Type Checking" "uv run mypy src/" || exit 1
4646
run_step "Complexity Analysis" "uv run radon cc src/ --min C" || exit 1
47-
run_step "Tests" "uv run pytest --cov=src/appimage_updater --cov-report=xml --cov-report=term-missing" || exit 1
47+
run_step "Tests" "uv run pytest --cov=src/taskfile_help --cov-report=xml --cov-report=term-missing" || exit 1
4848
run_step "Build Package" "uv build" || exit 1
4949

5050
echo -e "\n${GREEN}🎉 All CI steps completed successfully!${NC}"

scripts/ci-local.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export CI=true
1717
export RUNNER_OS=Linux
1818
export RUNNER_ARCH=X64
1919

20-
echo -e "${PURPLE}🔧 AppImage Updater - Local CI Simulation${NC}"
20+
echo -e "${PURPLE}🔧 Taskfile Help - Local CI Simulation${NC}"
2121
echo -e "${PURPLE}==========================================${NC}"
2222
echo -e "${BLUE}Simulating GitHub Actions CI environment locally${NC}"
2323
echo -e "${BLUE}Python version: $(python --version)${NC}"
@@ -80,7 +80,7 @@ run_ci_step "Complexity Analysis" "uv run radon cc src/ --min C" || {
8080
}
8181

8282
# Run tests with same coverage settings as CI (sequential execution)
83-
run_ci_step "Tests with Coverage" "uv run pytest --cov=src/appimage_updater --cov-report=xml --cov-report=term-missing --dist=no" || {
83+
run_ci_step "Tests with Coverage" "uv run pytest --cov=src/taskfile_help --cov-report=xml --cov-report=term-missing --dist=no" || {
8484
echo -e "${RED}💡 Check test failures above${NC}"
8585
exit 1
8686
}

scripts/dev-metrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def detect_package_name(src_paths: list[Path]) -> str:
153153
Strategy:
154154
1. If exactly one package directory (containing __init__.py) exists in src_path, use it
155155
2. Otherwise, use snake_case of project.name from pyproject.toml
156-
3. Fallback to "appimage_updater"
156+
3. Fallback to "taskfile_help"
157157
"""
158158
# Look for package directories (containing __init__.py) in src_path
159159
packages = []

0 commit comments

Comments
 (0)