Source code for Muscat.TestData
# -*- coding: utf-8 -*-
#
# This file is subject to the terms and conditions defined in
# file 'LICENSE.txt', which is part of this source code package.
#
"""
Help function to access the Test Data directory of Muscat
"""
_test = []
[docs]def GetTestDataPath() -> str:
"""Get the path of the test data directory of Muscat
Returns
-------
str
path to the directory containing all the files needed
to check the integrity of Muscat
"""
import os
return os.path.dirname(os.path.abspath(__file__))+os.sep