Skip to main content

Linux Build Status Code coverage

PyPI: PyPI Version PyPI Downloads Month Total PyPI Downloads

Conda: Conda Version Conda Installs

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.10, 3.11, 3.12, 3.13, and 3.14

Install

Installing the official package from PyPi

pip install cwltest

Or from bioconda

conda install -c bioconda cwltest

Or from source

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:

![test result](https://flat.badgen.net/https/path/to/generated/json?icon=commonwl)

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:

setup(
  ...
  entry_points={"cwltest.fsaccess": ["fsaccess=my_cwl_runner.fsaccess:get_fsaccess"]}},
  ...
)

In pyproject.toml it looks like:

[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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cwltest-2.7.20260814150058.tar.gz (48.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cwltest-2.7.20260814150058-py3-none-any.whl (49.1 kB view details)

Uploaded Python 3

File details

Details for the file cwltest-2.7.20260814150058.tar.gz.

File metadata

  • Download URL: cwltest-2.7.20260814150058.tar.gz
  • Upload date:
  • Size: 48.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.10.19

File hashes

Hashes for cwltest-2.7.20260814150058.tar.gz
Algorithm Hash digest
SHA256 8aeeccfcc22be3b5ada5611c63e721c7f3251477959bcdc1e006e2fdbd27b967
MD5 72ad11fb38cd6577ffda56b75d75c809
BLAKE2b-256 3b91ade3860434736c5414dec6e9a08488183e5e1335b261a71a5ce5cdfd6c02

See more details on using hashes here.

File details

Details for the file cwltest-2.7.20260814150058-py3-none-any.whl.

File metadata

File hashes

Hashes for cwltest-2.7.20260814150058-py3-none-any.whl
Algorithm Hash digest
SHA256 fa3120ef366d35ef837c04e807966c9f3c135f214837afa7d17bd9ed579d2a52
MD5 60ddb642770d164d0fe4ebd14b60b80c
BLAKE2b-256 d33b31678548c937c3c1a9d8586ad6421709d7283ac5a693fd0835339949869b

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page