Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pjob committed Mar 6, 2024
1 parent b686643 commit 50d542d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests_e2e/test_error_handling.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os
import subprocess

import pytest
Expand All @@ -7,7 +8,9 @@
def test_error_traceback_disabled_without_debug(snowcli, test_root_path):
traceback_msg = "Traceback (most recent call last)"
config_path = test_root_path / "config" / "malformatted_config.toml"
# os.chmod(config_path, 0o600)
print(f"xxx permissions 1: ${os.stat(config_path)}")
os.chmod(config_path, 0o600)
print(f"xxx permissions 2: ${os.stat(config_path)}")

result = subprocess.run(
[
Expand Down

0 comments on commit 50d542d

Please sign in to comment.