toil 8.0.0__tar.gz → 8.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- toil-8.2.0/.git-blame-ignore-revs +8 -0
- toil-8.2.0/.github/PULL_REQUEST_TEMPLATE.md +37 -0
- toil-8.2.0/.github/dependabot.yml +23 -0
- toil-8.2.0/.github/workflows/codeql-analysis.yml +71 -0
- toil-8.2.0/.gitignore +26 -0
- toil-8.2.0/.gitlab-ci.yml +794 -0
- toil-8.2.0/.readthedocs.yaml +25 -0
- toil-8.2.0/CODE_OF_CONDUCT.md +46 -0
- toil-8.2.0/CONTRIBUTING.md +6 -0
- toil-8.2.0/MANIFEST.in +10 -0
- toil-8.2.0/Makefile +389 -0
- {toil-8.0.0 → toil-8.2.0}/PKG-INFO +13 -7
- {toil-8.0.0 → toil-8.2.0}/README.rst +4 -0
- toil-8.2.0/ROADMAP.md +37 -0
- toil-8.2.0/attic/README.md +407 -0
- toil-8.2.0/attic/absolute_imports.py +118 -0
- toil-8.2.0/attic/jobTreeSlides.pdf +0 -0
- toil-8.2.0/attic/toil-sort-example.py +173 -0
- toil-8.2.0/common.mk +83 -0
- toil-8.2.0/contrib/admin/buildkit-deployment.yml +127 -0
- toil-8.2.0/contrib/admin/cleanup_aws_resources.py +330 -0
- toil-8.2.0/contrib/admin/mypy-with-ignore.py +137 -0
- toil-8.2.0/contrib/admin/remove_trailing_whitespace.py +74 -0
- toil-8.2.0/contrib/admin/test-pr +26 -0
- toil-8.2.0/contrib/admin/wheel-of-issues +43 -0
- toil-8.2.0/contrib/assets/toil-slug-logo-wordmark-2022.svg +283 -0
- toil-8.2.0/contrib/hooks/lib.py +177 -0
- toil-8.2.0/contrib/hooks/mypy-after-commit.py +35 -0
- toil-8.2.0/contrib/hooks/mypy-before-push.py +87 -0
- toil-8.2.0/contrib/mypy-stubs/configargparse/__init__.pyi +5 -0
- toil-8.2.0/contrib/mypy-stubs/configargparse/configargparse.pyi +34 -0
- toil-8.2.0/contrib/mypy-stubs/dill/__init__.pyi +4 -0
- toil-8.2.0/contrib/mypy-stubs/dill/_dill.pyi +83 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/__init__.pyi +4 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/__init__.pyi +23 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/annotations.pyi +3 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/callables.pyi +34 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/listener.pyi +50 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/notificationmgr.pyi +45 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/publisher.pyi +32 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/topicargspec.pyi +73 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/topicdefnprovider.pyi +97 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/topicexc.pyi +26 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/topicmgr.pyi +53 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/topicobj.pyi +75 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/topictreetraverser.pyi +15 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/topicutils.pyi +15 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/core/weakmethod.pyi +9 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/pub.pyi +43 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/utils/__init__.pyi +7 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/utils/exchandling.pyi +20 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/utils/misc.pyi +5 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/utils/notification.pyi +63 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/utils/topictreeprinter.pyi +24 -0
- toil-8.2.0/contrib/mypy-stubs/pubsub/utils/xmltopicdefnprovider.pyi +27 -0
- toil-8.2.0/contrib/mypy-stubs/tes/client.pyi +41 -0
- toil-8.2.0/contrib/mypy-stubs/tes/models.pyi +191 -0
- toil-8.2.0/contrib/pod-murder-bot/murder.yaml +34 -0
- toil-8.2.0/contrib/pod-murder-bot/podKiller.sh +26 -0
- toil-8.2.0/contrib/slurm-test/check_out.sh +17 -0
- toil-8.2.0/contrib/slurm-test/docker-compose.yml +71 -0
- toil-8.2.0/contrib/slurm-test/expected_out_basic.txt +1 -0
- toil-8.2.0/contrib/slurm-test/expected_out_sort.txt +1000 -0
- toil-8.2.0/contrib/slurm-test/fileToSort.txt +1000 -0
- toil-8.2.0/contrib/slurm-test/slurm.conf +151 -0
- toil-8.2.0/contrib/slurm-test/slurm_test.sh +26 -0
- {toil-8.0.0/src/toil/test/sort → toil-8.2.0/contrib/slurm-test}/sort.py +4 -1
- toil-8.2.0/contrib/slurm-test/toil_workflow.py +16 -0
- toil-8.2.0/contrib/toil-ci-prebake/Dockerfile +48 -0
- toil-8.2.0/contrib/toil-cwl-runner/README.rst +2 -0
- toil-8.2.0/contrib/toil-cwl-runner/pyproject.toml +6 -0
- toil-8.2.0/contrib/toil-cwl-runner/setup.cfg +17 -0
- toil-8.2.0/dashboard/grafana/Dockerfile +8 -0
- toil-8.2.0/dashboard/grafana/toil_dashboard.json +592 -0
- toil-8.2.0/dashboard/mtail/Dockerfile +7 -0
- toil-8.2.0/dashboard/mtail/toil.mtail +41 -0
- toil-8.2.0/dashboard/prometheus/Dockerfile +8 -0
- toil-8.2.0/dashboard/prometheus/prometheus.yml +46 -0
- toil-8.2.0/dashboard/prometheus/run.sh +9 -0
- toil-8.2.0/docker/Dockerfile.py +237 -0
- toil-8.2.0/docker/customDockerInit.sh +16 -0
- toil-8.2.0/docker/extra-debs.tsv +5 -0
- toil-8.2.0/docker/singularity-wrapper.sh +96 -0
- toil-8.2.0/docker/waitForKey.sh +2 -0
- toil-8.2.0/docs/Makefile +24 -0
- toil-8.2.0/docs/_static/favicon.ico +0 -0
- toil-8.2.0/docs/_static/logo.jpeg +0 -0
- toil-8.2.0/docs/_static/shortcut.png +0 -0
- toil-8.2.0/docs/appendices/architecture.rst +296 -0
- toil-8.2.0/docs/appendices/aws_min_permissions.rst +27 -0
- toil-8.2.0/docs/appendices/caching_benefits.png +0 -0
- toil-8.2.0/docs/appendices/deploy.rst +201 -0
- toil-8.2.0/docs/appendices/environment_vars.rst +289 -0
- toil-8.2.0/docs/appendices/toil_architecture.png +0 -0
- toil-8.2.0/docs/conf.py +229 -0
- toil-8.2.0/docs/contributing/checklists.rst +52 -0
- toil-8.2.0/docs/contributing/contributing.rst +633 -0
- toil-8.2.0/docs/cwl/conformance.rst +99 -0
- toil-8.2.0/docs/cwl/introduction.rst +10 -0
- toil-8.2.0/docs/cwl/running.rst +202 -0
- toil-8.2.0/docs/gettingStarted/googleScreenShot.png +0 -0
- toil-8.2.0/docs/gettingStarted/googleScreenShot2.png +0 -0
- toil-8.2.0/docs/gettingStarted/install.rst +249 -0
- toil-8.2.0/docs/gettingStarted/quickStart.rst +638 -0
- toil-8.2.0/docs/index.rst +94 -0
- toil-8.2.0/docs/python/developing.rst +658 -0
- toil-8.2.0/docs/python/toilAPI.rst +10 -0
- toil-8.2.0/docs/python/toilAPIBatchsystem.rst +48 -0
- toil-8.2.0/docs/python/toilAPIExceptions.rst +35 -0
- toil-8.2.0/docs/python/toilAPIFilestore.rst +14 -0
- toil-8.2.0/docs/python/toilAPIJobFunctions.rst +42 -0
- toil-8.2.0/docs/python/toilAPIJobstore.rst +12 -0
- toil-8.2.0/docs/python/toilAPIMethods.rst +20 -0
- toil-8.2.0/docs/python/toilAPIRunner.rst +10 -0
- toil-8.2.0/docs/python/toilAPIService.rst +10 -0
- toil-8.2.0/docs/running/cliOptions.rst +677 -0
- toil-8.2.0/docs/running/cloud/amazon.rst +554 -0
- toil-8.2.0/docs/running/cloud/amazonaddkeypair.png +0 -0
- toil-8.2.0/docs/running/cloud/cloud.rst +69 -0
- toil-8.2.0/docs/running/cloud/clusterUtils.rst +213 -0
- toil-8.2.0/docs/running/cloud/dashboard_screenshot.png +0 -0
- toil-8.2.0/docs/running/cloud/gce.rst +109 -0
- toil-8.2.0/docs/running/cloud/googleScreenShot.png +0 -0
- toil-8.2.0/docs/running/cloud/googleScreenShot2.png +0 -0
- toil-8.2.0/docs/running/cloud/kubernetes.rst +418 -0
- toil-8.2.0/docs/running/debugging.rst +404 -0
- toil-8.2.0/docs/running/hpcEnvironments.rst +81 -0
- toil-8.2.0/docs/running/introduction.rst +73 -0
- toil-8.2.0/docs/running/server/docker-compose.yml +47 -0
- toil-8.2.0/docs/running/server/wes.rst +403 -0
- toil-8.2.0/docs/running/utils.rst +279 -0
- toil-8.2.0/docs/vendor/sphinxcontrib/__init__.py +10 -0
- toil-8.2.0/docs/vendor/sphinxcontrib/fulltoc.py +93 -0
- toil-8.2.0/docs/wdl/conformance.rst +53 -0
- toil-8.2.0/docs/wdl/developing.rst +138 -0
- toil-8.2.0/docs/wdl/introduction.rst +18 -0
- toil-8.2.0/docs/wdl/running.rst +126 -0
- toil-8.2.0/docs/wdl/tutorial.rst +509 -0
- toil-8.2.0/pyproject.toml +3 -0
- {toil-8.0.0 → toil-8.2.0}/requirements-dev.txt +3 -2
- {toil-8.0.0 → toil-8.2.0}/requirements-server.txt +2 -2
- {toil-8.0.0 → toil-8.2.0}/requirements.txt +2 -1
- {toil-8.0.0 → toil-8.2.0}/setup.cfg +6 -6
- {toil-8.0.0 → toil-8.2.0}/setup.py +8 -3
- toil-8.2.0/setup_gitlab_docker.py +38 -0
- toil-8.2.0/setup_gitlab_ssh.py +38 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/__init__.py +4 -39
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/abstractBatchSystem.py +1 -1
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/abstractGridEngineBatchSystem.py +1 -1
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/awsBatch.py +1 -1
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/cleanup_support.py +1 -1
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/kubernetes.py +53 -7
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/local_support.py +1 -1
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/mesos/batchSystem.py +13 -8
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/mesos/test/__init__.py +3 -2
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/options.py +1 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/singleMachine.py +1 -1
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/slurm.py +229 -84
- {toil-8.0.0 → toil-8.2.0}/src/toil/bus.py +5 -3
- {toil-8.0.0 → toil-8.2.0}/src/toil/common.py +198 -54
- {toil-8.0.0 → toil-8.2.0}/src/toil/cwl/cwltoil.py +32 -11
- {toil-8.0.0 → toil-8.2.0}/src/toil/job.py +110 -86
- {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/abstractJobStore.py +24 -3
- {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/aws/jobStore.py +46 -10
- {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/fileJobStore.py +25 -1
- {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/googleJobStore.py +104 -30
- {toil-8.0.0 → toil-8.2.0}/src/toil/leader.py +9 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/accelerators.py +3 -1
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/aws/session.py +14 -3
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/aws/utils.py +92 -35
- toil-8.2.0/src/toil/lib/aws/utils.py.orig +504 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/bioio.py +1 -1
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/docker.py +252 -91
- toil-8.2.0/src/toil/lib/dockstore.py +387 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/ec2nodes.py +3 -2
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/exceptions.py +5 -3
- toil-8.2.0/src/toil/lib/history.py +1345 -0
- toil-8.2.0/src/toil/lib/history_submission.py +695 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/io.py +56 -23
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/misc.py +25 -1
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/resources.py +2 -1
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/retry.py +10 -10
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/threading.py +11 -10
- toil-8.0.0/src/toil/lib/integration.py → toil-8.2.0/src/toil/lib/trs.py +95 -46
- toil-8.2.0/src/toil/lib/web.py +38 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/options/common.py +25 -2
- {toil-8.0.0 → toil-8.2.0}/src/toil/options/cwl.py +10 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/options/wdl.py +11 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/gceProvisioner.py +4 -4
- toil-8.2.0/src/toil/server/api_spec/LICENSE +201 -0
- toil-8.2.0/src/toil/server/api_spec/README.rst +5 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/server/cli/wes_cwl_runner.py +5 -4
- {toil-8.0.0 → toil-8.2.0}/src/toil/server/utils.py +2 -3
- {toil-8.0.0 → toil-8.2.0}/src/toil/statsAndLogging.py +35 -1
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/__init__.py +275 -115
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/batchSystems/batchSystemTest.py +227 -205
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/batchSystems/test_slurm.py +199 -2
- toil-8.2.0/src/toil/test/cactus/pestis.tar.gz +0 -0
- toil-8.2.0/src/toil/test/conftest.py +7 -0
- toil-8.2.0/src/toil/test/cwl/2.fasta +11 -0
- toil-8.2.0/src/toil/test/cwl/2.fastq +12 -0
- toil-8.2.0/src/toil/test/cwl/conftest.py +56 -0
- toil-8.2.0/src/toil/test/cwl/cwlTest.py +2051 -0
- toil-8.2.0/src/toil/test/cwl/directory/directory/file.txt +15 -0
- toil-8.2.0/src/toil/test/cwl/download_directory_file.json +4 -0
- toil-8.2.0/src/toil/test/cwl/download_directory_s3.json +4 -0
- toil-8.2.0/src/toil/test/cwl/download_file.json +6 -0
- toil-8.2.0/src/toil/test/cwl/download_http.json +6 -0
- toil-8.2.0/src/toil/test/cwl/download_https.json +6 -0
- toil-8.2.0/src/toil/test/cwl/download_s3.json +6 -0
- toil-8.2.0/src/toil/test/cwl/download_subdirectory_file.json +5 -0
- toil-8.2.0/src/toil/test/cwl/download_subdirectory_s3.json +5 -0
- toil-8.2.0/src/toil/test/cwl/empty.json +1 -0
- toil-8.2.0/src/toil/test/cwl/mock_mpi/fake_mpi.yml +8 -0
- toil-8.2.0/src/toil/test/cwl/mock_mpi/fake_mpi_run.py +42 -0
- toil-8.2.0/src/toil/test/cwl/optional-file-exists.json +6 -0
- toil-8.2.0/src/toil/test/cwl/optional-file-missing.json +6 -0
- toil-8.2.0/src/toil/test/cwl/optional-file.cwl +18 -0
- toil-8.2.0/src/toil/test/cwl/preemptible_expression.json +1 -0
- toil-8.2.0/src/toil/test/cwl/revsort-job-missing.json +6 -0
- toil-8.2.0/src/toil/test/cwl/revsort-job.json +6 -0
- toil-8.2.0/src/toil/test/cwl/s3_secondary_file.json +16 -0
- toil-8.2.0/src/toil/test/cwl/seqtk_seq_job.json +6 -0
- toil-8.2.0/src/toil/test/cwl/stream.json +6 -0
- toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f2_TSM0 +0 -0
- toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f3 +0 -0
- toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f3_TSM0 +0 -0
- toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f4 +0 -0
- toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f4_TSM0 +0 -0
- toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f5 +0 -0
- toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.info +0 -0
- toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.lock +0 -0
- toil-8.2.0/src/toil/test/cwl/whale.txt +16 -0
- toil-8.2.0/src/toil/test/docs/__init__.py +0 -0
- toil-8.2.0/src/toil/test/docs/scripts/example_alwaysfail.py +38 -0
- toil-8.2.0/src/toil/test/docs/scripts/example_alwaysfail_with_files.wdl +33 -0
- toil-8.2.0/src/toil/test/docs/scripts/example_cachingbenchmark.py +117 -0
- toil-8.2.0/src/toil/test/docs/scripts/stagingExampleFiles/in.txt +1 -0
- toil-8.2.0/src/toil/test/docs/scripts/stagingExampleFiles/out.txt +2 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_arguments.py +23 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_debugging.patch +12 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_debugging_hangs.wdl +126 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_debugging_works.wdl +129 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_docker.py +20 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_dynamic.py +24 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_encapsulation.py +28 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_encapsulation2.py +29 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_helloworld.py +15 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_invokeworkflow.py +27 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_invokeworkflow2.py +30 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_jobfunctions.py +22 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_managing.py +29 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_managing2.py +56 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_multiplejobs.py +25 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_multiplejobs2.py +21 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_multiplejobs3.py +22 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_promises.py +25 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_promises2.py +30 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_quickstart.py +22 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_requirements.py +44 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_services.py +45 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_staging.py +45 -0
- toil-8.2.0/src/toil/test/docs/scripts/tutorial_stats.py +64 -0
- toil-8.2.0/src/toil/test/lib/__init__.py +0 -0
- toil-8.2.0/src/toil/test/lib/aws/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/aws/test_iam.py +3 -1
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/dockerTest.py +205 -122
- toil-8.2.0/src/toil/test/lib/test_history.py +236 -0
- toil-8.2.0/src/toil/test/lib/test_trs.py +161 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/aws/awsProvisionerTest.py +12 -9
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/clusterTest.py +4 -4
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/gceProvisionerTest.py +16 -14
- toil-8.2.0/src/toil/test/sort/sort.py +331 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/busTest.py +17 -17
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/deferredFunctionTest.py +145 -132
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/importExportFileTest.py +71 -63
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/jobEncapsulationTest.py +27 -28
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/jobServiceTest.py +149 -133
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/jobTest.py +219 -211
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/miscTests.py +66 -60
- toil-8.2.0/src/toil/test/src/promisedRequirementTest.py +270 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/regularLogTest.py +24 -24
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/resourceTest.py +82 -76
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/restartDAGTest.py +51 -47
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/resumabilityTest.py +24 -19
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/retainTempDirTest.py +60 -57
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/systemTest.py +17 -13
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/threadingTest.py +29 -32
- toil-8.2.0/src/toil/test/utils/ABCWorkflowDebug/B_file.txt +1 -0
- toil-8.2.0/src/toil/test/utils/ABCWorkflowDebug/debugWorkflow.py +204 -0
- toil-8.2.0/src/toil/test/utils/ABCWorkflowDebug/mkFile.py +16 -0
- toil-8.2.0/src/toil/test/utils/ABCWorkflowDebug/sleep.cwl +12 -0
- toil-8.2.0/src/toil/test/utils/ABCWorkflowDebug/sleep.yaml +1 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/utils/toilDebugTest.py +117 -102
- toil-8.2.0/src/toil/test/utils/toilKillTest.py +100 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/utils/utilsTest.py +303 -229
- toil-8.2.0/src/toil/test/wdl/__init__.py +0 -0
- toil-8.2.0/src/toil/test/wdl/lint_error.wdl +9 -0
- toil-8.2.0/src/toil/test/wdl/md5sum/empty_file.json +1 -0
- toil-8.2.0/src/toil/test/wdl/md5sum/md5sum-gs.json +1 -0
- toil-8.2.0/src/toil/test/wdl/md5sum/md5sum.1.0.wdl +32 -0
- toil-8.2.0/src/toil/test/wdl/md5sum/md5sum.input +1 -0
- toil-8.2.0/src/toil/test/wdl/md5sum/md5sum.json +1 -0
- toil-8.2.0/src/toil/test/wdl/md5sum/md5sum.wdl +25 -0
- toil-8.2.0/src/toil/test/wdl/miniwdl_self_test/inputs-namespaced.json +1 -0
- toil-8.2.0/src/toil/test/wdl/miniwdl_self_test/inputs.json +1 -0
- toil-8.2.0/src/toil/test/wdl/miniwdl_self_test/self_test.wdl +40 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/as_map.json +16 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/as_map_as_input.wdl +23 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/as_pairs.json +7 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/as_pairs_as_input.wdl +23 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/ceil.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/ceil_as_command.wdl +16 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/ceil_as_input.wdl +16 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/collect_by_key.json +1 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/collect_by_key_as_input.wdl +23 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/cross.json +11 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/cross_as_input.wdl +19 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/flatten.json +7 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/flatten_as_input.wdl +18 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/floor.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/floor_as_command.wdl +16 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/floor_as_input.wdl +16 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/keys.json +8 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/keys_as_input.wdl +24 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/length.json +7 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/length_as_input.wdl +16 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/length_as_input_with_map.json +7 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/length_as_input_with_map.wdl +17 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/length_invalid.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/range.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/range_0.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/range_as_input.wdl +17 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/range_invalid.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_boolean.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_boolean_as_command.wdl +17 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_float.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_float_as_command.wdl +17 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_int.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_int_as_command.wdl +17 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_json.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_json_as_output.wdl +31 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_lines.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_lines_as_output.wdl +31 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_map.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_map_as_output.wdl +31 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_string.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_string_as_command.wdl +17 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_tsv.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/read_tsv_as_output.wdl +31 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/round.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/round_as_command.wdl +16 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/round_as_input.wdl +16 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/size.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/size_as_command.wdl +17 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/size_as_output.wdl +36 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/stderr.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/stderr_as_output.wdl +30 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/stdout.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/stdout_as_output.wdl +30 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/sub.json +3 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/sub_as_input.wdl +17 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/sub_as_input_with_file.wdl +17 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/transpose.json +6 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/transpose_as_input.wdl +18 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/write_json.json +6 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/write_json_as_command.wdl +17 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/write_lines.json +7 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/write_lines_as_command.wdl +17 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/write_map.json +6 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/write_map_as_command.wdl +17 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/write_tsv.json +6 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/write_tsv_as_command.wdl +17 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/zip.json +12 -0
- toil-8.2.0/src/toil/test/wdl/standard_library/zip_as_input.wdl +19 -0
- toil-8.2.0/src/toil/test/wdl/test.csv +3 -0
- toil-8.2.0/src/toil/test/wdl/test.tsv +3 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/croo.wdl +38 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/drop_files.wdl +62 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/drop_files_subworkflow.wdl +13 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/empty.txt +0 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/not_enough_outputs.wdl +33 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/random.wdl +66 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/string_file_coercion.json +1 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/string_file_coercion.wdl +35 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/test.json +4 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/test_boolean.txt +1 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/test_float.txt +1 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/test_int.txt +1 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/test_lines.txt +5 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/test_map.txt +2 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/test_string.txt +1 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/url_to_file.wdl +13 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/url_to_optional_file.wdl +13 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/vocab.json +1 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/vocab.wdl +66 -0
- toil-8.2.0/src/toil/test/wdl/testfiles/wait.wdl +34 -0
- toil-8.2.0/src/toil/test/wdl/wdl_specification/type_pair.json +23 -0
- toil-8.2.0/src/toil/test/wdl/wdl_specification/type_pair_basic.wdl +36 -0
- toil-8.2.0/src/toil/test/wdl/wdl_specification/type_pair_with_files.wdl +36 -0
- toil-8.2.0/src/toil/test/wdl/wdl_specification/v1_spec.json +1 -0
- toil-8.2.0/src/toil/test/wdl/wdl_specification/v1_spec_declaration.wdl +39 -0
- toil-8.2.0/src/toil/test/wdl/wdltoil_test.py +1285 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/wdl/wdltoil_test_kubernetes.py +2 -2
- toil-8.2.0/src/toil/utils/__init__.py +0 -0
- toil-8.2.0/src/toil/version.py +14 -0
- toil-8.2.0/src/toil/wdl/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/wdl/wdltoil.py +350 -123
- {toil-8.0.0 → toil-8.2.0}/src/toil/worker.py +113 -33
- {toil-8.0.0 → toil-8.2.0}/src/toil.egg-info/PKG-INFO +13 -7
- toil-8.2.0/src/toil.egg-info/SOURCES.txt +596 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil.egg-info/requires.txt +6 -5
- toil-8.2.0/version_template.py +206 -0
- toil-8.0.0/MANIFEST.in +0 -1
- toil-8.0.0/src/toil/test/cwl/conftest.py +0 -17
- toil-8.0.0/src/toil/test/cwl/cwlTest.py +0 -1816
- toil-8.0.0/src/toil/test/lib/test_integration.py +0 -104
- toil-8.0.0/src/toil/test/src/promisedRequirementTest.py +0 -276
- toil-8.0.0/src/toil/test/utils/toilKillTest.py +0 -99
- toil-8.0.0/src/toil/test/wdl/wdltoil_test.py +0 -1012
- toil-8.0.0/src/toil/version.py +0 -14
- toil-8.0.0/src/toil.egg-info/SOURCES.txt +0 -269
- {toil-8.0.0 → toil-8.2.0}/LICENSE +0 -0
- {toil-8.0.0/src/toil/jobStores → toil-8.2.0/contrib/mypy-stubs/tes}/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/requirements-aws.txt +0 -0
- {toil-8.0.0 → toil-8.2.0}/requirements-cwl.txt +0 -0
- {toil-8.0.0 → toil-8.2.0}/requirements-encryption.txt +0 -0
- {toil-8.0.0 → toil-8.2.0}/requirements-google.txt +0 -0
- {toil-8.0.0 → toil-8.2.0}/requirements-htcondor.txt +0 -0
- {toil-8.0.0 → toil-8.2.0}/requirements-kubernetes.txt +0 -0
- {toil-8.0.0 → toil-8.2.0}/requirements-mesos.txt +0 -0
- {toil-8.0.0 → toil-8.2.0}/requirements-wdl.txt +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/contained_executor.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/gridengine.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/htcondor.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/lsf.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/lsfHelper.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/mesos/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/mesos/conftest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/mesos/executor.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/registry.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/torque.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/cwl/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/cwl/conftest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/cwl/utils.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/deferred.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/exceptions.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/fileStores/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/fileStores/abstractFileStore.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/fileStores/cachingFileStore.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/fileStores/nonCachingFileStore.py +0 -0
- {toil-8.0.0/src/toil/jobStores/aws → toil-8.2.0/src/toil/jobStores}/__init__.py +0 -0
- {toil-8.0.0/src/toil/lib → toil-8.2.0/src/toil/jobStores/aws}/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/aws/utils.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/conftest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/utils.py +0 -0
- {toil-8.0.0/src/toil/options → toil-8.2.0/src/toil/lib}/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/aws/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/aws/ami.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/aws/iam.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/aws/s3.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/compatibility.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/conversions.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/ec2.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/encryption/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/encryption/_dummy.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/encryption/_nacl.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/encryption/conftest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/expando.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/ftp_utils.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/generatedEC2Lists.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/humanize.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/iterables.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/memoize.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/objects.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/lib/throttle.py +0 -0
- {toil-8.0.0/src/toil/server → toil-8.2.0/src/toil/options}/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/options/runner.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/abstractProvisioner.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/aws/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/aws/awsProvisioner.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/clusterScaler.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/node.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/realtimeLogger.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/resource.py +0 -0
- {toil-8.0.0/src/toil/server/api_spec → toil-8.2.0/src/toil/server}/__init__.py +0 -0
- {toil-8.0.0/src/toil/server/cli → toil-8.2.0/src/toil/server/api_spec}/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/server/api_spec/workflow_execution_service.swagger.yaml +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/server/app.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/server/celery_app.py +0 -0
- {toil-8.0.0/src/toil/server/wes → toil-8.2.0/src/toil/server/cli}/__init__.py +0 -0
- {toil-8.0.0/src/toil/test/cactus → toil-8.2.0/src/toil/server/wes}/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/server/wes/abstract_backend.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/server/wes/amazon_wes_utils.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/server/wes/tasks.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/server/wes/toil_backend.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/server/wsgi_app.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/serviceManager.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/batchSystems/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/batchSystems/batch_system_plugin_test.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/batchSystems/test_gridengine.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/batchSystems/test_lsf_helper.py +0 -0
- {toil-8.0.0/src/toil/test/cwl → toil-8.2.0/src/toil/test/cactus}/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cactus/test_cactus_integration.py +0 -0
- {toil-8.0.0/src/toil/test/docs → toil-8.2.0/src/toil/test/cwl}/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/alwaysfails.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/colon_test_output.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/colon_test_output_job.yaml +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/conditional_wf.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/conditional_wf.yaml +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/directory_from_directory.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/download.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/download_directory.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/download_subdirectory.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/echo-stderr.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/echo-stdout-log-dir.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/echo.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/echo_string.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/echo_string_scatter_capture_stdout.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/file_from_directory.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/glob_dir.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/load_contents.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/measure_default_memory.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/mpi_simple.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/not_run_required_input.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/nvidia_smi.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/preemptible.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/preemptible_expression.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/revsort.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/revsort2.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/revtool.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/revtool2.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/s3_secondary_file.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/scatter_duplicate_outputs.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/seqtk_seq.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/sorttool.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/stream.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/test_filename_conflict_detection.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/test_filename_conflict_detection_at_root.cwl +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/test_filename_conflict_resolution.cwl +0 -0
- /toil-8.0.0/src/toil/test/lib/__init__.py → /toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.dat +0 -0
- /toil-8.0.0/src/toil/test/lib/aws/__init__.py → /toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f0 +0 -0
- /toil-8.0.0/src/toil/test/wdl/__init__.py → /toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f1 +0 -0
- /toil-8.0.0/src/toil/utils/__init__.py → /toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f1i +0 -0
- /toil-8.0.0/src/toil/wdl/__init__.py → /toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f2 +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/docs/scriptsTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/jobStores/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/jobStores/jobStoreTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/aws/test_s3.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/aws/test_utils.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/test_conversions.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/test_ec2.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/test_misc.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/mesos/MesosDataStructuresTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/mesos/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/mesos/helloWorld.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/mesos/stress.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/options/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/options/options.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/aws/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/clusterScalerTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/provisionerTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/restartScript.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/server/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/server/serverTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/sort/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/sort/restart_sort.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/sort/sortTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/autoDeploymentTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/checkpointTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/dockerCheckTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/environmentTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/fileStoreTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/helloWorldTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/jobDescriptionTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/jobFileStoreTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/promisesTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/realtimeLoggerTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/toilContextManagerTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/userDefinedJobArgTypeTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/workerTest.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/test/utils/__init__.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/toilState.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilClean.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilConfig.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilDebugFile.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilDebugJob.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilDestroyCluster.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilKill.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilLaunchCluster.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilMain.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilRsyncCluster.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilServer.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilSshCluster.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilStats.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilStatus.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilUpdateEC2Instances.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil/wdl/utils.py +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil.egg-info/dependency_links.txt +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil.egg-info/entry_points.txt +0 -0
- {toil-8.0.0 → toil-8.2.0}/src/toil.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# make format with black 24.10.0 on 2024-10-19
|
|
2
|
+
49d99f17799aa4a4235126bbdfb45f85e6499b27
|
|
3
|
+
# make sort_imports
|
|
4
|
+
a307a57651296e576d55f9159869dc9130da2b7c
|
|
5
|
+
# make remove_unused_import
|
|
6
|
+
1c6217e11a2815476ede1cc3ee584d5da3d5242a
|
|
7
|
+
# make pyupgrade (3.9+)
|
|
8
|
+
00f54f8417b3a0bc5d1ea46650aa2e6ce4792159
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
## Changelog Entry
|
|
2
|
+
To be copied to the [draft changelog](https://github.com/DataBiosphere/toil/wiki/Draft-Changelog) by merger:
|
|
3
|
+
|
|
4
|
+
* PR submitter writes their recommendation for a changelog entry here
|
|
5
|
+
|
|
6
|
+
## Reviewer Checklist
|
|
7
|
+
|
|
8
|
+
<!-- To be kept in sync with docs/contributing/checklists.rst -->
|
|
9
|
+
|
|
10
|
+
* [ ] Make sure it is coming from `issues/XXXX-fix-the-thing` in the Toil repo, or from an external repo.
|
|
11
|
+
* [ ] If it is coming from an external repo, make sure to pull it in for CI with:
|
|
12
|
+
```
|
|
13
|
+
contrib/admin/test-pr otheruser theirbranchname issues/XXXX-fix-the-thing
|
|
14
|
+
```
|
|
15
|
+
* [ ] If there is no associated issue, [create one](https://github.com/DataBiosphere/toil/issues/new).
|
|
16
|
+
* [ ] Read through the code changes. Make sure that it doesn't have:
|
|
17
|
+
* [ ] Addition of trailing whitespace.
|
|
18
|
+
* [ ] New variable or member names in `camelCase` that want to be in `snake_case`.
|
|
19
|
+
* [ ] New functions without [type hints](https://docs.python.org/3/library/typing.html).
|
|
20
|
+
* [ ] New functions or classes without informative docstrings.
|
|
21
|
+
* [ ] Changes to semantics not reflected in the relevant docstrings.
|
|
22
|
+
* [ ] New or changed command line options for Toil workflows that are not reflected in `docs/running/{cliOptions,cwl,wdl}.rst`
|
|
23
|
+
* [ ] New features without tests.
|
|
24
|
+
* [ ] Comment on the lines of code where problems exist with a review comment. You can shift-click the line numbers in the diff to select multiple lines.
|
|
25
|
+
* [ ] Finish the review with an overall description of your opinion.
|
|
26
|
+
|
|
27
|
+
## Merger Checklist
|
|
28
|
+
|
|
29
|
+
<!-- To be kept in sync with docs/contributing/checklists.rst -->
|
|
30
|
+
|
|
31
|
+
* [ ] Make sure the PR passed tests, including the Gitlab tests, for the most recent commit in its branch.
|
|
32
|
+
* [ ] Make sure the PR has been reviewed. If not, review it. If it has been reviewed and any requested changes seem to have been addressed, proceed.
|
|
33
|
+
* [ ] Merge with the Github "Squash and merge" feature.
|
|
34
|
+
* [ ] If there are multiple authors' commits, add [Co-authored-by](https://github.blog/2018-01-29-commit-together-with-co-authors/) to give credit to all contributing authors.
|
|
35
|
+
* [ ] Copy its recommended changelog entry to the [Draft Changelog](https://github.com/DataBiosphere/toil/wiki/Draft-Changelog).
|
|
36
|
+
* [ ] Append the issue number in parentheses to the changelog entry.
|
|
37
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Dependabot configuration file
|
|
2
|
+
# Validate with: check-jsonschema --schemafile https://json.schemastore.org/dependabot-2.0.json .github/dependabot.yml
|
|
3
|
+
version: 2
|
|
4
|
+
updates:
|
|
5
|
+
- package-ecosystem: "pip" # See documentation for possible values
|
|
6
|
+
directory: "/" # Location of package manifests
|
|
7
|
+
schedule:
|
|
8
|
+
interval: "daily"
|
|
9
|
+
ignore:
|
|
10
|
+
# htcondor is not under CI
|
|
11
|
+
- dependency-name: "htcondor"
|
|
12
|
+
# Google cloud/storage is not under CI
|
|
13
|
+
- dependency-name: "apache-libcloud"
|
|
14
|
+
- dependency-name: "google-cloud-storage"
|
|
15
|
+
- dependency-name: "google-auth"
|
|
16
|
+
rebase-strategy: disabled
|
|
17
|
+
- package-ecosystem: "github-actions"
|
|
18
|
+
directory: "/"
|
|
19
|
+
schedule:
|
|
20
|
+
interval: "weekly"
|
|
21
|
+
rebase-strategy: disabled
|
|
22
|
+
|
|
23
|
+
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# For most projects, this workflow file will not need changing; you simply need
|
|
2
|
+
# to commit it to your repository.
|
|
3
|
+
#
|
|
4
|
+
# You may wish to alter this file to override the set of languages analyzed,
|
|
5
|
+
# or to provide custom queries or build logic.
|
|
6
|
+
#
|
|
7
|
+
# ******** NOTE ********
|
|
8
|
+
# We have attempted to detect the languages in your repository. Please check
|
|
9
|
+
# the `language` matrix defined below to confirm you have the correct set of
|
|
10
|
+
# supported CodeQL languages.
|
|
11
|
+
#
|
|
12
|
+
name: "CodeQL"
|
|
13
|
+
|
|
14
|
+
on:
|
|
15
|
+
push:
|
|
16
|
+
branches: [ master]
|
|
17
|
+
pull_request:
|
|
18
|
+
# The branches below must be a subset of the branches above
|
|
19
|
+
branches: [ master ]
|
|
20
|
+
schedule:
|
|
21
|
+
- cron: '27 21 * * 4'
|
|
22
|
+
|
|
23
|
+
jobs:
|
|
24
|
+
analyze:
|
|
25
|
+
name: Analyze
|
|
26
|
+
runs-on: ubuntu-latest
|
|
27
|
+
permissions:
|
|
28
|
+
actions: read
|
|
29
|
+
contents: read
|
|
30
|
+
security-events: write
|
|
31
|
+
|
|
32
|
+
strategy:
|
|
33
|
+
fail-fast: false
|
|
34
|
+
matrix:
|
|
35
|
+
language: [ 'python' ]
|
|
36
|
+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
|
|
37
|
+
# Learn more:
|
|
38
|
+
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
|
|
39
|
+
|
|
40
|
+
steps:
|
|
41
|
+
- name: Checkout repository
|
|
42
|
+
uses: actions/checkout@v4
|
|
43
|
+
|
|
44
|
+
# Initializes the CodeQL tools for scanning.
|
|
45
|
+
- name: Initialize CodeQL
|
|
46
|
+
uses: github/codeql-action/init@v2
|
|
47
|
+
with:
|
|
48
|
+
languages: ${{ matrix.language }}
|
|
49
|
+
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
50
|
+
# By default, queries listed here will override any specified in a config file.
|
|
51
|
+
# Prefix the list here with "+" to use these queries and those in the config file.
|
|
52
|
+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
|
53
|
+
|
|
54
|
+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
55
|
+
# If this step fails, then you should remove it and run the build manually (see below)
|
|
56
|
+
- name: Autobuild
|
|
57
|
+
uses: github/codeql-action/autobuild@v2
|
|
58
|
+
|
|
59
|
+
# ℹ️ Command-line programs to run using the OS shell.
|
|
60
|
+
# 📚 https://git.io/JvXDl
|
|
61
|
+
|
|
62
|
+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
|
63
|
+
# and modify them (or add more) to build your code if your project
|
|
64
|
+
# uses a compiled language
|
|
65
|
+
|
|
66
|
+
#- run: |
|
|
67
|
+
# make bootstrap
|
|
68
|
+
# make release
|
|
69
|
+
|
|
70
|
+
- name: Perform CodeQL Analysis
|
|
71
|
+
uses: github/codeql-action/analyze@v2
|
toil-8.2.0/.gitignore
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
*.pyc
|
|
2
|
+
/src/*.egg-info
|
|
3
|
+
/build
|
|
4
|
+
/dist
|
|
5
|
+
/docs/_build
|
|
6
|
+
__pycache__
|
|
7
|
+
.eggs/
|
|
8
|
+
.cache/
|
|
9
|
+
.pytest_cache/
|
|
10
|
+
.idea/
|
|
11
|
+
/test-report.xml
|
|
12
|
+
/test-report-*.xml
|
|
13
|
+
venv*
|
|
14
|
+
v3nv/
|
|
15
|
+
tmp/
|
|
16
|
+
/src/toil/test/cwl/spec*
|
|
17
|
+
/src/toil/test/wdl/wdl-conformance-tests
|
|
18
|
+
/cwltool_deps/
|
|
19
|
+
/docs/generated_rst/
|
|
20
|
+
/docker/Dockerfile
|
|
21
|
+
/docker/toil-*.tar.gz
|
|
22
|
+
/src/toil/version.py
|
|
23
|
+
.coverage*
|
|
24
|
+
.mypy_cache
|
|
25
|
+
/contrib/admin/.issue_cache/
|
|
26
|
+
.docker_cache/
|