itw-python-builder 0.2.4__tar.gz → 0.2.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/PKG-INFO +1 -1
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder/tasks.py +4 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder.egg-info/PKG-INFO +1 -1
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/pyproject.toml +1 -1
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/LICENSE +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/README.md +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder/.pylintrc +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder/__init__.py +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder/cli.py +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder/notify.py +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder/ssr_tasks.py +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder/templates/new_version_email.html +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder/templates/server.sitemap.snippet.ts +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder/templates/sitemap.routes.ts +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder/utils.py +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder/version.py +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder.egg-info/SOURCES.txt +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder.egg-info/dependency_links.txt +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder.egg-info/entry_points.txt +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder.egg-info/requires.txt +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder.egg-info/top_level.txt +0 -0
- {itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/setup.cfg +0 -0
|
@@ -510,6 +510,10 @@ def analyze(ctx: Context):
|
|
|
510
510
|
|
|
511
511
|
if not sonar_host or not sonar_token:
|
|
512
512
|
raise RuntimeError('SONAR_HOST_URL and SONAR_TOKEN environment variables must be set.')
|
|
513
|
+
|
|
514
|
+
sonar_cache_dir = os.path.join(os.path.expanduser('~'), '.sonar', 'cache')
|
|
515
|
+
os.makedirs(sonar_cache_dir, exist_ok=True)
|
|
516
|
+
|
|
513
517
|
ctx.run(
|
|
514
518
|
f'podman run --rm -e SONAR_HOST_URL={sonar_host} -e SONAR_TOKEN={sonar_token} -e GIT_DEPTH={git_depth} --user=root -v "$(pwd)":/usr/src:Z -v $HOME/.sonar/cache:/opt/sonar-scanner/.sonar/cache:Z docker.io/sonarsource/sonar-scanner-cli:latest -Dsonar.projectVersion={sonar_version}')
|
|
515
519
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "itw_python_builder"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.5"
|
|
8
8
|
description = "Standardized Django deployment pipeline with Docker, testing, and SonarQube integration"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder/templates/sitemap.routes.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder.egg-info/requires.txt
RENAMED
|
File without changes
|
{itw_python_builder-0.2.4 → itw_python_builder-0.2.5}/itw_python_builder.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|