toil.test.src.resourceTest¶
Classes¶
Test module descriptors and resources derived from them. |
Functions¶
|
Write a file with the given contents, and keep it on disk as long as the context is active. |
Module Contents¶
- toil.test.src.resourceTest.tempFileContaining(content, suffix='')[source]¶
Write a file with the given contents, and keep it on disk as long as the context is active. :param str content: The contents of the file. :param str suffix: The extension to use for the temporary file.
- class toil.test.src.resourceTest.ResourceTest(methodName='runTest')[source]¶
Bases:
toil.test.ToilTest
Test module descriptors and resources derived from them.
- testNonPyStandAlone()[source]¶
Asserts that Toil enforces the user script to have a .py or .pyc extension because that’s the only way auto-deployment can re-import the module on a worker. See
https://github.com/BD2KGenomics/toil/issues/631 and https://github.com/BD2KGenomics/toil/issues/858