Skip to content

Commit 87dbecb

Browse files
OsOperations::remove_file is added
It seems to me we forgot to add it.
1 parent b597bf8 commit 87dbecb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

testgres/operations/os_ops.py

+4
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ def isdir(self, dirname):
108108
def get_file_size(self, filename):
109109
raise NotImplementedError()
110110

111+
def remove_file(self, filename):
112+
assert type(filename) == str # noqa: E721
113+
raise NotImplementedError()
114+
111115
# Processes control
112116
def kill(self, pid, signal):
113117
# Kill the process

0 commit comments

Comments
 (0)