Skip to content

Commit

Permalink
Fix conan config clean test
Browse files Browse the repository at this point in the history
  • Loading branch information
AbrilRBS committed Jan 27, 2025
1 parent 68d0c46 commit 1b14ff5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/integration/command/config_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ def test_config_clean(storage_path):
assert "bar" not in tc.out
tc.run("config show core.upload:retry")
assert "7" not in tc.out
assert not os.path.exists(os.path.join(tc.cache_folder, "extensions"))
assert os.path.exists(os.path.join(tc.cache_folder, "extensions"))
assert not os.path.exists(os.path.join(tc.cache_folder, "extensions", "compatibility", "mycomp.py"))
assert os.path.exists(absolut_storage_path)


Expand Down

0 comments on commit 1b14ff5

Please sign in to comment.