Skip to content

Commit 90e5359

Browse files
committed
Cleanup files from test
1 parent 5c2a22c commit 90e5359

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/e2e/e2e_file_ops.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,5 +146,11 @@ async def main():
146146

147147

148148
if __name__ == "__main__":
149-
asyncio.run(main())
149+
try:
150+
asyncio.run(main())
151+
finally:
152+
try:
153+
os.unlink("test.txt")
154+
except OSError:
155+
pass
150156
print("\033[1m\tOK\033[0m")

0 commit comments

Comments
 (0)