pintest-cli 0.2.0__tar.gz → 0.2.1__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.
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/PKG-INFO +1 -1
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest/cli.py +2 -2
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest_cli.egg-info/PKG-INFO +1 -1
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/setup.py +1 -1
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/README.md +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest/__init__.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest/build_mapping_iterative.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest/cloud_mapping_db.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest/config.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest/coverage_mapper.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest/git_diff_parser.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest/post_commit_hook.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest/pre_commit_hook.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest/range_set.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest/test_mapping_db_v2.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest/update_mapping.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest_cli.egg-info/SOURCES.txt +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest_cli.egg-info/dependency_links.txt +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest_cli.egg-info/entry_points.txt +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest_cli.egg-info/requires.txt +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/pintest_cli.egg-info/top_level.txt +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/setup.cfg +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/tests/__init__.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/tests/test_git_diff_parser.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/tests/test_new_feature.py +0 -0
- {pintest_cli-0.2.0 → pintest_cli-0.2.1}/tests/test_range_set.py +0 -0
|
@@ -283,7 +283,7 @@ def cmd_build_mapping(args):
|
|
|
283
283
|
|
|
284
284
|
def cmd_login(args):
|
|
285
285
|
"""Authenticate with Pintest and save API key to ~/.pintest/config.toml."""
|
|
286
|
-
from .config import Config, CloudConfig
|
|
286
|
+
from .config import Config, CloudConfig, CONFIG_FILE
|
|
287
287
|
|
|
288
288
|
api_url = args.api_url.rstrip("/")
|
|
289
289
|
|
|
@@ -339,7 +339,7 @@ def cmd_login(args):
|
|
|
339
339
|
cfg.cloud = CloudConfig(api_key=api_key, api_url=api_url)
|
|
340
340
|
cfg.save()
|
|
341
341
|
|
|
342
|
-
print(f"\n✅ Logged in! Config saved to {
|
|
342
|
+
print(f"\n✅ Logged in! Config saved to {CONFIG_FILE}")
|
|
343
343
|
print(f" Next step: pintest track")
|
|
344
344
|
|
|
345
345
|
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="pintest-cli",
|
|
8
|
-
version="0.2.
|
|
8
|
+
version="0.2.1",
|
|
9
9
|
description="Run only the tests affected by your code changes.",
|
|
10
10
|
long_description=long_description,
|
|
11
11
|
long_description_content_type="text/markdown",
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|