mirror of
https://github.com/ansible/awx.git
synced 2026-03-25 12:55:04 -02:30
Merge pull request #6794 from ryanpetrello/fix-6748
more isolated production tinkering
This commit is contained in:
@@ -149,7 +149,7 @@ def test_build_isolated_job_data(private_data_dir, rsa_key):
|
||||
|
||||
path = os.path.join(private_data_dir, 'artifacts')
|
||||
assert os.path.isdir(path)
|
||||
assert stat.S_IMODE(os.stat(path).st_mode) == stat.S_IRUSR + stat.S_IWUSR # user rw
|
||||
assert stat.S_IMODE(os.stat(path).st_mode) == stat.S_IXUSR + stat.S_IWUSR + stat.S_IRUSR # user rwx
|
||||
|
||||
path = os.path.join(private_data_dir, 'args')
|
||||
with open(path, 'r') as f:
|
||||
|
||||
Reference in New Issue
Block a user