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
Currently, running a smoke test for storage with pytest tests/test_smoke.py::TestStorageWithCredentials deletes all the sky managed storages created before runinng the test. This is due to subprocess.check_output(['sky', 'storage', 'delete', '-a']) ran from test_multiple_buckets_creation_and_deletion. This needs to be fixed so running the smoke test does not remove any other sky managed storages.
This can be reproduced by:
Create s3 storage with sky launch task.yaml
run pytest tests/test_smoke.py::TestStorageWithCredentials
confirm all the storage created from 1. gets deleted.
The text was updated successfully, but these errors were encountered:
Currently, running a smoke test for storage with
pytest tests/test_smoke.py::TestStorageWithCredentials
deletes all the sky managed storages created before runinng the test. This is due tosubprocess.check_output(['sky', 'storage', 'delete', '-a'])
ran fromtest_multiple_buckets_creation_and_deletion
. This needs to be fixed so running the smoke test does not remove any other sky managed storages.This can be reproduced by:
s3
storage with sky launch task.yamlpytest tests/test_smoke.py::TestStorageWithCredentials
The text was updated successfully, but these errors were encountered: