cmeel 0.44.0__tar.gz → 0.44.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.
Potentially problematic release.
This version of cmeel might be problematic. Click here for more details.
- {cmeel-0.44.0 → cmeel-0.44.1}/PKG-INFO +1 -1
- {cmeel-0.44.0 → cmeel-0.44.1}/cmeel/config.py +1 -7
- {cmeel-0.44.0 → cmeel-0.44.1}/pyproject.toml +1 -1
- {cmeel-0.44.0 → cmeel-0.44.1}/LICENSE +0 -0
- {cmeel-0.44.0 → cmeel-0.44.1}/README.md +0 -0
- {cmeel-0.44.0 → cmeel-0.44.1}/cmeel/__init__.py +0 -0
- {cmeel-0.44.0 → cmeel-0.44.1}/cmeel/__main__.py +0 -0
- {cmeel-0.44.0 → cmeel-0.44.1}/cmeel/backports.py +0 -0
- {cmeel-0.44.0 → cmeel-0.44.1}/cmeel/build.py +0 -0
- {cmeel-0.44.0 → cmeel-0.44.1}/cmeel/consts.py +0 -0
- {cmeel-0.44.0 → cmeel-0.44.1}/cmeel/docker.py +0 -0
- {cmeel-0.44.0 → cmeel-0.44.1}/cmeel/env.py +0 -0
- {cmeel-0.44.0 → cmeel-0.44.1}/cmeel/metadata.py +0 -0
- {cmeel-0.44.0 → cmeel-0.44.1}/cmeel/pth.py +0 -0
- {cmeel-0.44.0 → cmeel-0.44.1}/cmeel/run.py +0 -0
- {cmeel-0.44.0 → cmeel-0.44.1}/cmeel.pth +0 -0
|
@@ -8,8 +8,6 @@ from pathlib import Path
|
|
|
8
8
|
from tempfile import TemporaryDirectory
|
|
9
9
|
from typing import Any, Dict, List, Optional, Union
|
|
10
10
|
|
|
11
|
-
from .env import get_paths
|
|
12
|
-
|
|
13
11
|
try:
|
|
14
12
|
import tomllib # type: ignore
|
|
15
13
|
except ModuleNotFoundError:
|
|
@@ -97,11 +95,7 @@ class CmeelConfig:
|
|
|
97
95
|
def get_test_env(self) -> Dict[str, str]:
|
|
98
96
|
"""Get test environment."""
|
|
99
97
|
ret = self.env.copy()
|
|
100
|
-
ret.update(
|
|
101
|
-
CTEST_OUTPUT_ON_FAILURE="1",
|
|
102
|
-
CTEST_PARALLEL_LEVEL=self.test_jobs,
|
|
103
|
-
LD_LIBRARY_PATH=get_paths("lib", True),
|
|
104
|
-
)
|
|
98
|
+
ret.update(CTEST_OUTPUT_ON_FAILURE="1", CTEST_PARALLEL_LEVEL=self.test_jobs)
|
|
105
99
|
return ret
|
|
106
100
|
|
|
107
101
|
def _get_available_prefix(self) -> Optional[str]:
|
|
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
|