Skip to content

Commit

Permalink
test: do not overwrite user ssl env var
Browse files Browse the repository at this point in the history
  • Loading branch information
psergee committed Sep 22, 2024
1 parent 9fcdfc7 commit 7118b55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def tt_cmd(tmp_path_factory):

build_env = os.environ.copy()
build_env["TTEXE"] = tt_path
build_env["TT_CLI_BUILD_SSL"] = "static"
build_env.setdefault("TT_CLI_BUILD_SSL", "static")

process = subprocess.run(["mage", "-v", "build"], cwd=tt_base_path, env=build_env)
assert process.returncode == 0, "Failed to build Tarantool CLI executable"
Expand Down

0 comments on commit 7118b55

Please sign in to comment.