nvidia-nat-test 1.4.0a20251024__py3-none-any.whl → 1.4.0a20251029__py3-none-any.whl
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.
Potentially problematic release.
This version of nvidia-nat-test might be problematic. Click here for more details.
- nat/test/plugin.py +3 -2
- {nvidia_nat_test-1.4.0a20251024.dist-info → nvidia_nat_test-1.4.0a20251029.dist-info}/METADATA +2 -2
- {nvidia_nat_test-1.4.0a20251024.dist-info → nvidia_nat_test-1.4.0a20251029.dist-info}/RECORD +8 -8
- {nvidia_nat_test-1.4.0a20251024.dist-info → nvidia_nat_test-1.4.0a20251029.dist-info}/WHEEL +0 -0
- {nvidia_nat_test-1.4.0a20251024.dist-info → nvidia_nat_test-1.4.0a20251029.dist-info}/entry_points.txt +0 -0
- {nvidia_nat_test-1.4.0a20251024.dist-info → nvidia_nat_test-1.4.0a20251029.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
- {nvidia_nat_test-1.4.0a20251024.dist-info → nvidia_nat_test-1.4.0a20251029.dist-info}/licenses/LICENSE.md +0 -0
- {nvidia_nat_test-1.4.0a20251024.dist-info → nvidia_nat_test-1.4.0a20251029.dist-info}/top_level.txt +0 -0
nat/test/plugin.py
CHANGED
|
@@ -485,14 +485,15 @@ def fixture_redis_server(fail_missing: bool) -> Generator[dict[str, str | int]]:
|
|
|
485
485
|
host = os.environ.get("NAT_CI_REDIS_HOST", "localhost")
|
|
486
486
|
port = int(os.environ.get("NAT_CI_REDIS_PORT", "6379"))
|
|
487
487
|
db = int(os.environ.get("NAT_CI_REDIS_DB", "0"))
|
|
488
|
+
password = os.environ.get("REDIS_PASSWORD", "redis")
|
|
488
489
|
bucket_name = os.environ.get("NAT_CI_REDIS_BUCKET_NAME", "test")
|
|
489
490
|
|
|
490
491
|
try:
|
|
491
492
|
import redis
|
|
492
|
-
client = redis.Redis(host=host, port=port, db=db)
|
|
493
|
+
client = redis.Redis(host=host, port=port, db=db, password=password)
|
|
493
494
|
if not client.ping():
|
|
494
495
|
raise RuntimeError("Failed to connect to Redis")
|
|
495
|
-
yield {"host": host, "port": port, "db": db, "bucket_name": bucket_name}
|
|
496
|
+
yield {"host": host, "port": port, "db": db, "bucket_name": bucket_name, "password": password}
|
|
496
497
|
except ImportError:
|
|
497
498
|
if fail_missing:
|
|
498
499
|
raise
|
{nvidia_nat_test-1.4.0a20251024.dist-info → nvidia_nat_test-1.4.0a20251029.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nvidia-nat-test
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.0a20251029
|
|
4
4
|
Summary: Testing utilities for NeMo Agent toolkit
|
|
5
5
|
Author: NVIDIA Corporation
|
|
6
6
|
Maintainer: NVIDIA Corporation
|
|
@@ -16,7 +16,7 @@ Requires-Python: <3.14,>=3.11
|
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE-3rd-party.txt
|
|
18
18
|
License-File: LICENSE.md
|
|
19
|
-
Requires-Dist: nvidia-nat==v1.4.
|
|
19
|
+
Requires-Dist: nvidia-nat==v1.4.0a20251029
|
|
20
20
|
Requires-Dist: langchain-community~=0.3
|
|
21
21
|
Requires-Dist: pytest~=8.3
|
|
22
22
|
Dynamic: license-file
|
{nvidia_nat_test-1.4.0a20251024.dist-info → nvidia_nat_test-1.4.0a20251029.dist-info}/RECORD
RENAMED
|
@@ -5,14 +5,14 @@ nat/test/functions.py,sha256=ZxXVzfaLBGOpR5qtmMrKU7q-M9-vVGGj3Xi5mrw4vHY,3557
|
|
|
5
5
|
nat/test/llm.py,sha256=f6bz6arAQjhjuOKFrLfu_U1LbiyFzQmpM-q8b-WKSrU,9550
|
|
6
6
|
nat/test/memory.py,sha256=xki_A2yiMhEZuQk60K7t04QRqf32nQqnfzD5Iv7fkvw,1456
|
|
7
7
|
nat/test/object_store_tests.py,sha256=PyJioOtoSzILPq6LuD-sOZ_89PIcgXWZweoHBQpK2zQ,4281
|
|
8
|
-
nat/test/plugin.py,sha256=
|
|
8
|
+
nat/test/plugin.py,sha256=cFjMu8CfPwSKOIBrYiYIZP_Zwp0fE-do6_3_JlGJ3lo,22355
|
|
9
9
|
nat/test/register.py,sha256=o1BEA5fyxyFyCxXhQ6ArmtuNpgRyTEfvw6HdBgECPLI,897
|
|
10
10
|
nat/test/tool_test_runner.py,sha256=SxavwXHkvCQDl_PUiiiqgvGfexKJJTeBdI5i1qk6AzI,21712
|
|
11
11
|
nat/test/utils.py,sha256=x0xi3Oo2CYKqQdJ2nKqr9HvzBN6snjwzKGbVTOneqRs,5731
|
|
12
|
-
nvidia_nat_test-1.4.
|
|
13
|
-
nvidia_nat_test-1.4.
|
|
14
|
-
nvidia_nat_test-1.4.
|
|
15
|
-
nvidia_nat_test-1.4.
|
|
16
|
-
nvidia_nat_test-1.4.
|
|
17
|
-
nvidia_nat_test-1.4.
|
|
18
|
-
nvidia_nat_test-1.4.
|
|
12
|
+
nvidia_nat_test-1.4.0a20251029.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
|
|
13
|
+
nvidia_nat_test-1.4.0a20251029.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
14
|
+
nvidia_nat_test-1.4.0a20251029.dist-info/METADATA,sha256=58IW4QPcL2xo6eNciPwdvN6bvImRIR1xb9VW7s9VqK8,1925
|
|
15
|
+
nvidia_nat_test-1.4.0a20251029.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
16
|
+
nvidia_nat_test-1.4.0a20251029.dist-info/entry_points.txt,sha256=7dOP9XB6iMDqvav3gYx9VWUwA8RrFzhbAa8nGeC8e4Y,99
|
|
17
|
+
nvidia_nat_test-1.4.0a20251029.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
|
|
18
|
+
nvidia_nat_test-1.4.0a20251029.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nvidia_nat_test-1.4.0a20251024.dist-info → nvidia_nat_test-1.4.0a20251029.dist-info}/top_level.txt
RENAMED
|
File without changes
|