File size: 333 Bytes
6931c7b |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/usr/bin/env python
# encoding: utf-8
# Copyright (c) 2013 Max Planck Society. All rights reserved.
import tempfile
from os.path import abspath, dirname, join
test_data_folder = abspath(join(dirname(__file__), '..', 'data', 'unittest'))
# folder used for creating temporary files
temporary_files_folder = tempfile.gettempdir()
|