1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
Metadata-Version: 2.1
Name: cwltest
Version: 2.5.20241122133319
Summary: Common Workflow Language testing framework
Author-email: Common workflow language working group <common-workflow-language@googlegroups.com>
License: Apache 2.0
Project-URL: Homepage, https://github.com/common-workflow-language/cwltest
Project-URL: Download, https://github.com/common-workflow-language/cwltest
Classifier: Environment :: Console
Classifier: Framework :: Pytest
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: <3.14,>=3.8
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: schema-salad<9,>=5.0.20200220195218
Requires-Dist: junit-xml>=1.8
Requires-Dist: pytest<9,>=7
Requires-Dist: defusedxml
Requires-Dist: importlib_resources>=1.4; python_version < "3.9"
Provides-Extra: pytest-plugin
Requires-Dist: pytest; extra == "pytest-plugin"
##########################################
Common Workflow Language testing framework
##########################################
|Linux Build Status| |Code coverage|
PyPI: |PyPI Version| |PyPI Downloads Month| |Total PyPI Downloads|
Conda: |Conda Version| |Conda Installs|
.. |Linux Build Status| image:: https://github.com/common-workflow-language/cwltest/actions/workflows/ci-tests.yml/badge.svg?branch=main
:target: https://github.com/common-workflow-language/cwltest/actions/workflows/ci-tests.yml
.. |Code coverage| image:: https://codecov.io/gh/common-workflow-language/cwltest/branch/master/graph/badge.svg
:target: https://codecov.io/gh/common-workflow-language/cwltest
.. |PyPI Version| image:: https://badge.fury.io/py/cwltest.svg
:target: https://badge.fury.io/py/cwltest
.. |PyPI Downloads Month| image:: https://pepy.tech/badge/cwltest/month
:target: https://pepy.tech/project/cwltest
.. |Total PyPI Downloads| image:: https://static.pepy.tech/personalized-badge/cwltest?period=total&units=international_system&left_color=black&right_color=orange&left_text=Total%20PyPI%20Downloads
:target: https://pepy.tech/project/cwltest
.. |Conda Version| image:: https://anaconda.org/bioconda/cwltest/badges/version.svg
:target: https://anaconda.org/bioconda/cwltest
.. |Conda Installs| image:: https://anaconda.org/bioconda/cwltest/badges/downloads.svg
:target: https://anaconda.org/bioconda/cwltest
This is a testing tool for checking the output of Tools and Workflows described
with the Common Workflow Language. Among other uses, it is used to run the CWL
conformance tests.
This is written and tested for Python 3.8, 3.9, 3.10, 3.11, 3.12, and 3.13.
.. contents:: Table of Contents
:local:
*******
Install
*******
Installing the official package from PyPi
.. code:: bash
pip install cwltest
Or from bioconda
.. code:: bash
conda install -c bioconda cwltest
Or from source
.. code:: bash
git clone https://github.com/common-workflow-language/cwltest.git
cd cwltest && pip install .
***********************
Run on the command line
***********************
Simple command::
cwltest --test test-descriptions.yml --tool cwl-runner
*****************************************
Generate conformance badges using cwltest
*****************************************
To make badges that show the results of the conformance test,
you can generate JSON files for https://badgen.net by using --badgedir option
To generate JSON files::
cwltest --test test-descriptions.yml --tool cwl-runner --badgedir badges
...
$ cat badges/command_line_tool.json | jq .
{
"subject": "command_line_tool",
"status": "100%",
"color": "green"
}
Once you upload JSON file to a server, you make a badge by using a link like https://badgen.net/https/path/to/generated/json or https://flat.badgen.net/https/path/to/generated/json (for flat badges).
Here is an example of markdown to add a badge::

*************************
Custom file access module
*************************
If your CWL implementation does not write output files to a local file
system location but instead to some other remote storage system, you
can provide an alternate implementation of the *StdFsAccess* object
that is able to access your storage system.
Step 1:
Implement your own class with the same public interface of the
*StdFsAccess* object in *cwltest/stdfsaccess.py* (as of this writing,
the methods are *open*, *size*, *isfile* and *isdir*). These methods
should expect to be called with URIs from the *location* field of the
outputs of test cases.
Define a function that, when called, returns a new instance of your object.
Step 2:
Create a Python package containing your class (or add it to an
existing one).
In the package metadata, add an entry point that declares the module
(in this example, *my_cwl_runner.fsaccess*) containing the function
(in this example, *get_fsaccess*) that *cwltest* will invoke to get an
object implementing the *StdFsAccess* interface.
In *setup.py* this looks like:
.. code:: python
setup(
...
entry_points={"cwltest.fsaccess": ["fsaccess=my_cwl_runner.fsaccess:get_fsaccess"]}},
...
)
In *pyproject.toml* it looks like:
.. code::
[project.entry-points.'cwltest.fsaccess']
fsaccess = 'my_cwl_runner.fsaccess:get_fsaccess'
Step 3:
Install your package in the same Python environemnt as the
installation of *cwltest*. When invoked, *cwltest* will query Python
package metadata for a package with the *cwltest.fsaccess* entry point
and call it to get back a custom filesystem access object.
|