Skip to content

Commit 59aaf02

Browse files
committed
chore(a/b): remove AWS_EMF_* environment variables
These variables are no longer needed for A/B since A/B scripts use `metrics.json` files which are always emitted, instead of `test-report.json`. Signed-off-by: Egor Lazarchuk <yegorlz@amazon.co.uk>
1 parent 6882a80 commit 59aaf02

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tools/ab_test.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -206,11 +206,7 @@ def collect_data(tag: str, binary_dir: Path, pytest_opts: str):
206206
test_report_path = f"{test_path}/test-report.json"
207207
subprocess.run(
208208
f"./tools/test.sh --binary-dir={binary_dir} {pytest_opts} -m '' --json-report-file=../{test_report_path}",
209-
env=os.environ
210-
| {
211-
"AWS_EMF_ENVIRONMENT": "local",
212-
"AWS_EMF_NAMESPACE": "local",
213-
},
209+
env=os.environ,
214210
check=True,
215211
shell=True,
216212
)

0 commit comments

Comments
 (0)