Thanks to visit codestin.com
Credit goes to github.com

Skip to content

TestOsOpsCommon is added [generic os_ops tests] #231

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prev Previous commit
Next Next commit
[FIX] OsOperations::mkstemp is added
We forgot about this thing.
  • Loading branch information
dmitry-lipetsk committed Apr 2, 2025
commit a71b0fb77333763847d0a479b84e40e20432e6e1
3 changes: 3 additions & 0 deletions testgres/operations/os_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ def pathsep(self):
def mkdtemp(self, prefix=None):
raise NotImplementedError()

def mkstemp(self, prefix=None):
raise NotImplementedError()

def copytree(self, src, dst):
raise NotImplementedError()

Expand Down