You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In CI tests, we have the test_options/test_opt_invalid_cachedir test that check if an OptionValueError is indeed raised when the option cache_dir is set to a folder without writing access.
To run the test, we create a dummy folder, remove write access and try to set it as cache_dir.
The issue is that under the latest windows in Github Actions, I can't manage to create a non-writable folder !
I've tried to use icacls (see argopy/tests/helpers/utils.py) but it doesn't work, the command still return a:
but os.stat(folder_name).st_mode remains 16895 instead of 16749.
I work with Mac and Linux not Windows, and can't easily try to fix this issue
If you want to give it a try, you're welcome,
I give up and skip this test for Windows platform
The text was updated successfully, but these errors were encountered:
In CI tests, we have the
test_options/test_opt_invalid_cachedir
test that check if anOptionValueError
is indeed raised when the optioncache_dir
is set to a folder without writing access.To run the test, we create a dummy folder, remove write access and try to set it as
cache_dir
.The issue is that under the latest windows in Github Actions, I can't manage to create a non-writable folder !
I've tried to use
icacls
(seeargopy/tests/helpers/utils.py
) but it doesn't work, the command still return a:but
os.stat(folder_name).st_mode
remains 16895 instead of 16749.I work with Mac and Linux not Windows, and can't easily try to fix this issue
If you want to give it a try, you're welcome,
I give up and skip this test for Windows platform
The text was updated successfully, but these errors were encountered: