Skip to content

Commit

Permalink
fix octopus paths on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sarah-witt committed Jan 17, 2025
1 parent 26599b9 commit 3dd164c
Show file tree
Hide file tree
Showing 23 changed files with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions octopus_deploy/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ def method(method, url, file='response', headers=None, params=None):
else:
val_string = str(val)
param_string += ("/" if param_string else "") + f'{key}={val_string}'
param_string = param_string.replace(':', '_')
request_path = '{}/{}'.format(url, param_string)
print(request_path)
response = responses_map.get(method, {}).get(request_path, {}).get(filename)
Expand Down

0 comments on commit 3dd164c

Please sign in to comment.