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
{{ message }}
This repository has been archived by the owner on Dec 28, 2020. It is now read-only.
Coul there be an exists tests in the __init__ or maybe just allow it to be set automatically when the class is instantiated inside open_archive_filepath.
path=os.path.join(self.this_dir, "bin/storytracker-archive")
cmd2="%s %s --do-not-compress --output-dir=%s"% (
path, self.simple_url, self.tmpdir
)
code2, path2, err2=Command(cmd2).run(timeout=3)
obj2=storytracker.open_archive_filepath(path2)
# If you ran obj2.archive_path right here it would return None when the file existsself.assertTrue(os.path.exists(path2))
os.remove(path2)
The text was updated successfully, but these errors were encountered:
Coul there be an
exists
tests in the__init__
or maybe just allow it to be set automatically when the class is instantiated insideopen_archive_filepath
.The text was updated successfully, but these errors were encountered: