Skip to content

Commit

Permalink
Fix running tests in GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
gdubicki committed Apr 21, 2022
1 parent 4bedd16 commit 20e2644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/acceptance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
for env_var in env_vars_to_files.keys():
if env_var not in os.environ:
print(f"{env_var} not set - trying to read it from a file...")
for up_dir_level in range(1, 4):
for up_dir_level in range(0, 4):
file_path = (up_dir_level * "../") + env_vars_to_files[env_var]
print(f"Trying to read {file_path} ...")
if os.path.isfile(file_path):
Expand Down

0 comments on commit 20e2644

Please sign in to comment.