diff env/lib/python3.9/site-packages/cwltool/schemas/v1.2.0-dev4/CONFORMANCE_TESTS.md @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/env/lib/python3.9/site-packages/cwltool/schemas/v1.2.0-dev4/CONFORMANCE_TESTS.md	Mon Mar 22 18:12:50 2021 +0000
@@ -0,0 +1,45 @@
+# Common workflow language conformance test suite
+
+The conformance tests are intended to test feature coverage of a CWL
+implementation.  It uses the module cwltest from https://github.com/common-workflow-language/cwltest/.
+
+## Usage
+
+```
+$ ./run_test.sh
+--- Running conformance test draft-3 on cwl-runner ---
+Test [49/49]
+All tests passed
+```
+
+
+## Options
+
+RUNNER=other-cwl-runner
+
+The CWL implementation to be tested.
+
+-nN
+
+Run a single specific test number N.
+
+EXTRA=--parallel
+
+Extra options to pass to the CWL runner
+
+For example, to run conformance test 15 against the "cwltool"
+reference implementation with `--parallel`:
+
+```
+$ ./run_test.sh RUNNER=cwltool -n15 EXTRA=--parallel
+Test [15/49]
+All tests passed
+```
+
+## Notes
+
+_NOTE_: For running on OSX systems, you'll need to install coreutils via brew. This will add to your
+system some needed GNU-like tools like `greadlink`.
+
+1. If you haven't already, install [brew](http://brew.sh/) package manager in your mac
+2. Run `brew install coreutils`