flopy/autotest/t999_test_cleanup.py

15 lines
248 B
Python

# Remove the temp directory if it exists
import os
import shutil
def test_cleanup():
tempdir = os.path.join('.', 'temp')
if os.path.isdir(tempdir):
shutil.rmtree(tempdir)
return
if __name__ == '__main__':
test_cleanup()