We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7bb4e9 commit 20e43f6Copy full SHA for 20e43f6
tests/e2e/utils/infrastructure.py
@@ -1,6 +1,7 @@
1
import json
2
import logging
3
import os
4
+import platform
5
import subprocess
6
import sys
7
import textwrap
@@ -56,7 +57,7 @@ def __init__(self) -> None:
56
57
self._feature_infra_module_path = self.feature_path / "infrastructure"
58
self._feature_infra_file = self.feature_path / "infrastructure.py"
59
self._handlers_dir = self.feature_path / "handlers"
- self._cdk_out_dir: Path = CDK_OUT_PATH / self.feature_name
60
+ self._cdk_out_dir: Path = CDK_OUT_PATH / "-".join(platform.python_version_tuple()) / self.feature_name
61
self._stack_outputs_file = f'{self._cdk_out_dir / "stack_outputs.json"}'
62
63
if not self._feature_infra_file.exists():
0 commit comments