Skip to content

Commit

Permalink
fix windows ci
Browse files Browse the repository at this point in the history
  • Loading branch information
karmacoma-eth committed May 25, 2024
1 parent b10d536 commit fdd74ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,12 @@ def test_config_file_in_project_root():
cfp = ConfigFileProvider()

# when we pass the project root as an argument
base_path = "/path/to/project"
args = ["--root", "/path/to/project", "--extra-args", "ignored", "--help"]
cfp.resolve_config_files(args)

# then the config file should be in the project root
assert cfp.provide() == ["/path/to/project/halmos.toml"]
assert cfp.provide() == [os.path.join(base_path, "halmos.toml")]


def test_load_config_file_not_found():
Expand Down

0 comments on commit fdd74ae

Please sign in to comment.