Lines Matching full:path
16 from pathlib import Path
46 Returns the fully qualified path to the uncompressed file
53 (name, ext) = os.path.splitext(str(compressed))
54 uncompressed = self.scratch_file(os.path.basename(name))
74 If @member is non-None, returns the fully qualified path to @member
106 Construct a path for accessing a data file located
113 reference a file nested below. The path components
114 will be joined using the platform appropriate path
117 Returns: string representing a file path
120 return str(Path(Path(__file__).parent.parent, *args))
125 Construct a path for accessing a data file located
131 reference a file nested below. The path components
132 will be joined using the platform appropriate path
135 Returns: string representing a file path
138 return str(Path(BUILD_DIR, *args))
143 Construct a path for accessing/creating a scratch file
151 reference a file nested below. The path components
152 will be joined using the platform appropriate path
155 Returns: string representing a file path
158 return str(Path(self.workdir, *args))
163 Construct a path for accessing/creating a log file
171 reference a file nested below. The path components
172 will be joined using the platform appropriate path
175 Returns: string representing a file path
178 return str(Path(self.outputdir, *args))
183 Return the full path to the plugin taking into account any host OS
188 return os.path.join('tests', 'tcg', 'plugins', f'{plugin_name}.{sfx}')
206 self.workdir = os.path.join(self.outputdir, 'scratch')
237 path = os.path.basename(sys.argv[0])[:-3]
241 Asset.precache_suites(path, cache)
247 argv=["__dummy__", path])
265 self._ldpath.append(os.path.abspath(ldpath))
353 f"socket,id=backdoor,path={sockpath},server=on,wait=off",