#!/usr/bin/env python """Incomplete test configuration for the query module.""" import os QUERY_TEST_PATH = os.path.join("tests", "query") ncdir = os.path.join(os.path.dirname(os.path.abspath(__file__)), QUERY_TEST_PATH, "nc") csvdir = os.path.join(os.path.dirname(os.path.abspath(__file__)), QUERY_TEST_PATH, "csv") NCFILE_PATTERN = "%(location)s_%(platform)s_%(package)s_" \ "[0-9][0-9][0-9][0-9]_[0-9][0-9].nc" CSVFILE_PATTERN = "%(location)s_%(platform)s_%(package)s_" \ "[0-9][0-9][0-9][0-9]_[0-9][0-9].csv" LOCATION = "location" PLATFORM = "platform" PACKAGES = ('system', 'turbidity', 'optode_127', 'optode_167', 'optode_169', 'optode_170', 'optode_171', 'optode_172', 'optode_173', 'optode_175', 'optode_176', 'optode_178', 'optode_179', 'conductivity', 'pressure', 'current', )