Skip to content

Commit

Permalink
[test]: inherit env from OS
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Balashov <[email protected]>
  • Loading branch information
0x009922 committed Dec 21, 2023
1 parent 0ee598e commit e6a95a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, args: argparse.Namespace):
self.out_dir = args.out_dir
peers_dir = args.out_dir.joinpath("peers")
os.makedirs(peers_dir, exist_ok=True)
self.shared_env = {}
self.shared_env = dict(os.environ)

self.peers = [_Peer(args, i) for i in range(args.n_peers)]

Expand Down

0 comments on commit e6a95a5

Please sign in to comment.