8000 Merge branch 'master' into D20250316_001--altlinux_10 · postgrespro/testgres@e5948ec · GitHub
[go: up one dir, main page]

Skip to content

Commit e5948ec

Browse files
Merge branch 'master' into D20250316_001--altlinux_10
2 parents 378f967 + 25c6a2f commit e5948ec

File tree

5 files changed

+525
-6
lines changed

5 files changed

+525
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
dist/
66
build/
77
docs/build/
8+
logs/
89

910
env/
1011
venv/

pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[pytest]
2-
testpaths = ["./tests", "./testgres/plugins/pg_probackup2/pg_probackup2/tests"]
2+
testpaths = tests testgres/plugins/pg_probackup2/pg_probackup2/tests
33
addopts = --strict-markers
44
markers =
55
#log_file = logs/pytest.log

testgres/operations/os_ops.py

Lines changed: 4 additions & 0 deletions
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)
0