├── .bandit ├── .codacy.yml ├── .codecov.yml ├── .coveragerc ├── .dockerignore ├── .github ├── bin │ └── mail ├── dependabot.yml └── workflows │ ├── 1_create_release_pr.yml │ ├── 2_auto_publish_release.yml │ ├── bash.yml │ ├── branch_sync.yml │ ├── build.yml │ ├── shortlog.yml │ ├── test_conda-build.yml │ ├── test_fast.yml │ ├── test_functional.yml │ ├── test_tutorial_workflow.yml │ └── update_copyright.yml ├── .gitignore ├── .mailmap ├── .wci.yml ├── CHANGES.md ├── CONTRIBUTING.md ├── COPYING ├── INSTALL.md ├── MANIFEST.in ├── README.md ├── SECURITY.md ├── changes.d ├── 6719.fix.md ├── 7042.feat.md ├── 7052.feat.md ├── 7100.fix.md ├── 7108.fix.md └── changelog-template.jinja ├── conda-environment.yml ├── cylc └── flow │ ├── __init__.py │ ├── async_util.py │ ├── broadcast_mgr.py │ ├── broadcast_report.py │ ├── c3mro.py │ ├── cfgspec │ ├── README │ ├── __init__.py │ ├── glbl_cfg.py │ ├── globalcfg.py │ └── workflow.py │ ├── clean.py │ ├── command_polling.py │ ├── command_validation.py │ ├── commands.py │ ├── config.py │ ├── context_node.py │ ├── cycling │ ├── __init__.py │ ├── integer.py │ ├── iso8601.py │ ├── loader.py │ └── util.py │ ├── cylc_subproc.py │ ├── daemonize.py │ ├── data_messages.proto │ ├── data_messages_pb2.py │ ├── data_messages_pb2.pyi │ ├── data_store_mgr.py │ ├── dbstatecheck.py │ ├── etc │ ├── README.md │ ├── cylc │ ├── cylc-completion.bash │ ├── examples │ │ ├── 1-hello-world │ │ │ ├── .validate │ │ │ ├── flow.cylc │ │ │ └── index.rst │ │ ├── 2-integer-cycling │ │ │ ├── .validate │ │ │ ├── flow.cylc │ │ │ └── index.rst │ │ ├── 3-datetime-cycling │ │ │ ├── .validate │ │ │ ├── flow.cylc │ │ │ └── index.rst │ │ ├── README.md │ │ ├── converging-workflow │ │ │ ├── .validate │ │ │ ├── flow.cylc │ │ │ └── index.rst │ │ ├── cycle-over-irregular-dates │ │ │ ├── .validate │ │ │ ├── index.rst │ │ │ ├── inter-dependent │ │ │ │ └── flow.cylc │ │ │ └── simple │ │ │ │ └── flow.cylc │ │ ├── event-driven-cycling │ │ │ ├── .validate │ │ │ ├── README.rst │ │ │ ├── bin │ │ │ │ └── trigger │ │ │ ├── flow.cylc │ │ │ └── index.rst │ │ ├── expiry │ │ │ ├── .validate │ │ │ ├── index.rst │ │ │ ├── one │ │ │ │ └── flow.cylc │ │ │ ├── three │ │ │ │ └── flow.cylc │ │ │ └── two │ │ │ │ └── flow.cylc │ │ ├── extending-workflow │ │ │ ├── .validate │ │ │ ├── index.rst │ │ │ └── simple │ │ │ │ └── flow.cylc │ │ ├── external-data-files │ │ │ ├── .validate │ │ │ ├── flow.cylc │ │ │ ├── index.rst │ │ │ ├── lib │ │ │ │ └── python │ │ │ │ │ └── load_data.py │ │ │ ├── stations.csv │ │ │ └── stations.json │ │ └── inter-workflow-triggers │ │ │ ├── .validate │ │ │ ├── README.rst │ │ │ ├── downstream │ │ │ └── flow.cylc │ │ │ ├── index.rst │ │ │ └── upstream │ │ │ └── flow.cylc │ ├── job.sh │ ├── syntax │ │ ├── cylc-mode.el │ │ ├── cylc.lang │ │ ├── cylc.nanorc │ │ └── cylc.xml │ └── tutorial │ │ ├── consolidation-tutorial │ │ ├── .validate │ │ ├── bin │ │ ├── etc │ │ │ ├── met-office-sites.dat │ │ │ └── python-job.settings │ │ ├── flow.cylc │ │ └── lib │ │ ├── cylc-forecasting-workflow │ │ ├── .validate │ │ ├── bin │ │ │ ├── consolidate-observations │ │ │ ├── forecast │ │ │ ├── get-observations │ │ │ ├── get-rainfall │ │ │ └── post-process │ │ ├── etc │ │ │ ├── met-office-sites.dat │ │ │ └── python-job.settings │ │ ├── flow.cylc │ │ └── lib │ │ │ ├── python │ │ │ ├── mercator.py │ │ │ └── util.py │ │ │ └── template │ │ │ └── map.html │ │ ├── forecast-script │ │ ├── forecast │ │ └── util.py │ │ ├── inheritance-tutorial │ │ └── flow.cylc │ │ ├── map-template │ │ └── map-template.html │ │ ├── message-trigger-tutorial │ │ └── bin │ │ │ └── random.sh │ │ ├── retries-tutorial │ │ ├── .validate │ │ └── flow.cylc │ │ ├── runtime-introduction │ │ ├── .validate │ │ ├── bin │ │ │ └── get-observations │ │ ├── etc │ │ │ └── python-job.settings │ │ └── flow.cylc │ │ ├── runtime-tutorial │ │ ├── bin │ │ ├── etc │ │ │ ├── met-office-sites.dat │ │ │ └── python-job.settings │ │ ├── flow.cylc │ │ ├── lib │ │ └── runtime │ │ └── test-data │ │ ├── rainfall.csv │ │ ├── wind_20171101T0000Z_x.csv │ │ └── wind_20171101T0000Z_y.csv │ ├── exceptions.py │ ├── flags.py │ ├── flow_mgr.py │ ├── graph_parser.py │ ├── graphnode.py │ ├── host_select.py │ ├── hostuserutil.py │ ├── id.py │ ├── id_cli.py │ ├── id_match.py │ ├── install.py │ ├── install_plugins │ ├── __init__.py │ └── log_vc_info.py │ ├── jinja │ └── filters │ │ ├── duration_as.py │ │ ├── pad.py │ │ └── strftime.py │ ├── job_file.py │ ├── job_runner_handlers │ ├── __init__.py │ ├── at.py │ ├── background.py │ ├── documentation.py │ ├── loadleveler.py │ ├── lsf.py │ ├── moab.py │ ├── pbs.py │ ├── pbs_multi_cluster.py │ ├── sge.py │ ├── slurm.py │ └── slurm_packjob.py │ ├── job_runner_mgr.py │ ├── listify.py │ ├── log_diagnosis.py │ ├── log_level.py │ ├── loggingutil.py │ ├── main_loop │ ├── __init__.py │ ├── auto_restart.py │ ├── health_check.py │ ├── log_data_store.py │ ├── log_db.py │ ├── log_main_loop.py │ ├── log_memory.py │ ├── log_tracemalloc.py │ └── reset_bad_hosts.py │ ├── network │ ├── __init__.py │ ├── authentication.py │ ├── client.py │ ├── client_factory.py │ ├── graphql.py │ ├── graphql_subscribe.py │ ├── log_stream_handler.py │ ├── multi.py │ ├── publisher.py │ ├── replier.py │ ├── resolvers.py │ ├── scan.py │ ├── schema.py │ ├── server.py │ ├── ssh_client.py │ └── subscriber.py │ ├── option_parsers.py │ ├── param_expand.py │ ├── parsec │ ├── OrderedDict.py │ ├── README.md │ ├── __init__.py │ ├── config.py │ ├── exceptions.py │ ├── fileparse.py │ ├── include.py │ ├── jinja2support.py │ ├── upgrade.py │ ├── util.py │ └── validate.py │ ├── pathutil.py │ ├── pipe_poller.py │ ├── platforms.py │ ├── plugins.py │ ├── prerequisite.py │ ├── print_tree.py │ ├── profiler.py │ ├── py.typed │ ├── remote.py │ ├── resources.py │ ├── run_modes │ ├── __init__.py │ ├── dummy.py │ ├── simulation.py │ └── skip.py │ ├── rundb.py │ ├── scheduler.py │ ├── scheduler_cli.py │ ├── scripts │ ├── __init__.py │ ├── broadcast.py │ ├── cat_log.py │ ├── check_versions.py │ ├── clean.py │ ├── client.py │ ├── common.py │ ├── completion_server.py │ ├── config.py │ ├── cycle_point.py │ ├── cylc.py │ ├── diff.py │ ├── dump.py │ ├── ext_trigger.py │ ├── function_run.py │ ├── get_resources.py │ ├── get_workflow_contact.py │ ├── get_workflow_version.py │ ├── graph.py │ ├── hold.py │ ├── install.py │ ├── jobs_kill.py │ ├── jobs_poll.py │ ├── jobs_submit.py │ ├── kill.py │ ├── lint.py │ ├── list.py │ ├── message.py │ ├── pause.py │ ├── ping.py │ ├── play.py │ ├── poll.py │ ├── psutil.py │ ├── reinstall.py │ ├── release.py │ ├── reload.py │ ├── remote_init.py │ ├── remote_tidy.py │ ├── remove.py │ ├── report_timings.py │ ├── scan.py │ ├── set.py │ ├── show.py │ ├── stop.py │ ├── subscribe.py │ ├── trigger.py │ ├── tui.py │ ├── validate.py │ ├── validate_install_play.py │ ├── validate_reinstall.py │ ├── verbosity.py │ ├── view.py │ └── workflow_state.py │ ├── subprocctx.py │ ├── subprocpool.py │ ├── task_action_timer.py │ ├── task_events_mgr.py │ ├── task_id.py │ ├── task_job_logs.py │ ├── task_job_mgr.py │ ├── task_message.py │ ├── task_outputs.py │ ├── task_pool.py │ ├── task_proxy.py │ ├── task_qualifiers.py │ ├── task_queues │ ├── __init__.py │ └── independent.py │ ├── task_remote_cmd.py │ ├── task_remote_mgr.py │ ├── task_state.py │ ├── task_state_prop.py │ ├── task_trigger.py │ ├── taskdef.py │ ├── templatevars.py │ ├── terminal.py │ ├── time_parser.py │ ├── timer.py │ ├── tui │ ├── __init__.py │ ├── app.py │ ├── data.py │ ├── overlay.py │ ├── tree.py │ ├── updater.py │ └── util.py │ ├── unicode_rules.py │ ├── util.py │ ├── wallclock.py │ ├── workflow_db_mgr.py │ ├── workflow_events.py │ ├── workflow_files.py │ ├── workflow_status.py │ ├── xtrigger_mgr.py │ └── xtriggers │ ├── __init__.py │ ├── echo.py │ ├── suite_state.py │ ├── wall_clock.py │ ├── workflow_state.py │ └── xrandom.py ├── doc └── README.md ├── dockerfiles ├── cylc-dev │ └── Dockerfile └── cylc-remote │ ├── Dockerfile │ └── configure ├── etc ├── README.md ├── bin │ ├── README │ ├── run-functional-tests │ ├── run-validate-tutorials │ ├── shellchecker │ ├── swarm │ └── syntax_generator.py ├── conf │ ├── global.cylc │ └── ssh_config ├── notes │ ├── README.update-web-site │ └── poster-print.txt └── syntax │ ├── README │ └── reference-files │ ├── flow.cylc │ └── flow_jinja2.cylc ├── mypy.ini ├── pyproject.toml ├── pytest.ini ├── setup.cfg ├── setup.py ├── tests ├── README.md ├── conftest.py ├── f ├── flakyfunctional │ ├── README.md │ ├── cyclers │ │ ├── 19-async_integer.t │ │ ├── 19-async_integer │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── 30-r1_at_icp_or.t │ │ ├── 30-r1_at_icp_or │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ └── test_header │ ├── cylc-get-config │ │ ├── 04-dummy-mode-output.t │ │ ├── 04-dummy-mode-output │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── cylc-poll │ │ ├── 03-poll-all.t │ │ ├── 03-poll-all │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 16-execution-time-limit.t │ │ ├── 16-execution-time-limit │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── cylc-show │ │ ├── 00-simple.t │ │ ├── 00-simple │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-multi.t │ │ ├── 04-multi │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── database │ │ ├── 00-simple.t │ │ ├── 00-simple │ │ │ ├── flow.cylc │ │ │ └── schema.out │ │ ├── 01-broadcast.t │ │ ├── 01-broadcast │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-retry.t │ │ ├── 02-retry │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── events │ │ ├── 01-task.t │ │ ├── 01-task │ │ │ ├── bin │ │ │ │ └── handler.sh │ │ │ ├── events.log │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-timeout-ref-dummy.t │ │ ├── 05-timeout-ref-dummy │ │ │ └── flow.cylc │ │ ├── 39-task-event-template-all.t │ │ ├── 39-task-event-template-all │ │ │ ├── bin │ │ │ │ └── checkargs │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 40-stall-despite-clock-trig.t │ │ ├── 40-stall-despite-clock-trig │ │ │ └── flow.cylc │ │ ├── 41-task-event-template-deprecated.t │ │ ├── 44-timeout.t │ │ ├── 44-timeout │ │ │ ├── bin │ │ │ │ └── sleeper.sh │ │ │ └── flow.cylc │ │ └── test_header │ ├── execution-time-limit │ │ ├── 00-background.t │ │ ├── 00-background │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-at │ │ ├── 01-at.t │ │ ├── 04-poll.t │ │ ├── 04-poll │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── hold-release │ │ ├── 15-hold-after.t │ │ ├── 15-hold-after │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── integer-cycling │ │ ├── 00-satellite.t │ │ ├── 00-satellite │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── job-submission │ │ ├── 05-activity-log.t │ │ ├── 05-activity-log │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 19-chatty.t │ │ ├── 19-chatty │ │ │ ├── bin │ │ │ │ └── talkingnonsense │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── lib │ ├── modes │ │ ├── 03-dummy-env.t │ │ ├── 03-dummy-env │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── restart │ │ ├── 14-multicycle.t │ │ ├── 14-multicycle │ │ │ ├── bin │ │ │ │ └── ctb-select-task-states │ │ │ └── flow.cylc │ │ ├── 21-task-elapsed.t │ │ ├── 21-task-elapsed │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 39-auto-restart-no-suitable-host.t │ │ ├── 40-auto-restart-force-stop.t │ │ ├── 46-stop-clock-time.t │ │ ├── bin │ │ │ └── ctb-select-task-states │ │ ├── lib │ │ └── test_header │ ├── shutdown │ │ ├── 00-rm-db.t │ │ └── test_header │ ├── special │ │ ├── 04-clock-triggered.t │ │ ├── 04-clock-triggered │ │ │ └── flow.cylc │ │ ├── 05-clock-triggered-utc │ │ ├── 05-clock-triggered-utc.t │ │ ├── 06-clock-triggered-iso │ │ ├── 06-clock-triggered-iso.t │ │ ├── 08-clock-triggered-0 │ │ ├── 08-clock-triggered-0.t │ │ └── test_header │ └── xtriggers │ │ ├── 00-wall_clock.t │ │ ├── 00-wall_clock │ │ └── flow.cylc │ │ ├── 01-workflow_state.t │ │ ├── 01-workflow_state │ │ ├── flow.cylc │ │ └── upstream │ │ │ └── flow.cylc │ │ └── test_header ├── functional │ ├── README.md │ ├── authentication │ │ ├── 00-shared-fs.t │ │ ├── 00-shared-fs │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-remote-workflow-same-name.t │ │ ├── 01-remote-workflow-same-name │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-workflow2-stop-workflow1.t │ │ ├── basic │ │ │ └── flow.cylc │ │ └── test_header │ ├── broadcast │ │ ├── 00-simple.t │ │ ├── 00-simple │ │ │ ├── broadcast.ref │ │ │ ├── expected-prep.err │ │ │ ├── expected-prep.out │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-inherit.t │ │ ├── 02-inherit │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-expire.t │ │ ├── 03-expire │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-empty.t │ │ ├── 04-empty │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-bad-point.t │ │ ├── 05-bad-point │ │ │ └── flow.cylc │ │ ├── 06-bad-namespace.t │ │ ├── 06-bad-namespace │ │ │ └── flow.cylc │ │ ├── 07-timeout.t │ │ ├── 07-timeout │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 08-space.t │ │ ├── 08-space │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 09-remote.t │ │ ├── 09-remote │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 10-file-1.t │ │ ├── 10-file-1 │ │ │ ├── broadcast.cylc │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 11-file-2.t │ │ ├── 11-file-2 │ │ │ ├── broadcast-1.cylc │ │ │ ├── broadcast-2.cylc │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 12-file-stdin.t │ │ ├── 12-file-stdin │ │ │ ├── broadcast.cylc │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 13-file-cancel.t │ │ ├── 13-file-cancel │ │ │ ├── broadcast-1.cylc │ │ │ ├── broadcast-2.cylc │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 14-broadcast-checkpoint │ │ │ └── flow.cylc │ │ ├── 14-display-format.t │ │ └── test_header │ ├── cli │ │ ├── 00-cycle-points.t │ │ ├── 00-cycle-points │ │ │ └── flow.cylc │ │ ├── 01-help.t │ │ ├── 03-verbosity.t │ │ ├── 05-colour.t │ │ └── test_header │ ├── clock-expire │ │ ├── 00-basic.t │ │ ├── 00-basic │ │ │ └── flow.cylc │ │ └── test_header │ ├── clock-trigger-inexact │ │ ├── 00-big-offset.t │ │ ├── 00-big-offset │ │ │ └── flow.cylc │ │ └── test_header │ ├── cyclepoint │ │ ├── 00-time.t │ │ ├── 02-template.t │ │ └── test_header │ ├── cyclers │ │ ├── 00-daily-find.out │ │ ├── 00-daily.t │ │ ├── 0000_rollunder │ │ │ └── flow.cylc │ │ ├── 01-hourly.t │ │ ├── 02-monthly.t │ │ ├── 03-multidaily.t │ │ ├── 04-multihourly.t │ │ ├── 05-multimonthly.t │ │ ├── 06-multiweekly.t │ │ ├── 07-multiyearly.t │ │ ├── 08-offset_final.t │ │ ├── 09-offset_initial.t │ │ ├── 10-r1_final.t │ │ ├── 11-r1_initial.t │ │ ├── 12-r1_middle.t │ │ ├── 13-r5_final.t │ │ ├── 14-r5_initial-integer.t │ │ ├── 14-r5_initial.t │ │ ├── 15-subhourly.t │ │ ├── 16-weekly.t │ │ ├── 17-yearly.t │ │ ├── 18-r1_multi_start.t │ │ ├── 20-multidaily_local.t │ │ ├── 25-aeon.t │ │ ├── 26-0000_rollunder.t │ │ ├── 28-missing-cycling-sequence.t │ │ ├── 29-r1_restricted.t │ │ ├── 31-rnone_reverse.t │ │ ├── 32-rmany_reverse.t │ │ ├── 33-integer1.t │ │ ├── 34-r1_initial_immortal.t │ │ ├── 35-day_of_week.t │ │ ├── 37-exclusions.t │ │ ├── 39-exclusions_advanced.t │ │ ├── 40-integer_exclusions_advanced.t │ │ ├── 48-icp-cutoff.t │ │ ├── aeon │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── common │ │ ├── daily │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── daily_final │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── day_of_week │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── exclusions │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── exclusions_advanced │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── hourly │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── integer1 │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── integer_exclusions_advanced │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── monthly │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── monthly_complex │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── multidaily │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── multidaily_local │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── multihourly │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── multimonthly │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── multiweekly │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── multiyearly │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── offset_final │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── offset_initial │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── r1_final │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── r1_initial │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── r1_initial_back_comp_standalone_line │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── r1_initial_immortal │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── r1_middle │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── r1_multi_start │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── r1_restricted │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── r5_final │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── r5_initial-integer │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── r5_initial │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── rmany_reverse │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── rnone_reverse │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── subhourly │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ ├── test_header │ │ ├── weekly │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ │ └── yearly │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── reference.log │ ├── cylc-cat-log │ │ ├── 00-local.t │ │ ├── 00-local │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-remote.t │ │ ├── 01-remote │ │ │ └── flow.cylc │ │ ├── 02-remote-custom-runtime-viewer-pbs.t │ │ ├── 02-remote-custom-runtime-viewer-pbs │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-local-tail.t │ │ ├── 04-local-tail │ │ │ ├── bin │ │ │ │ └── my-tailer.sh │ │ │ └── flow.cylc │ │ ├── 05-remote-tail.t │ │ ├── 05-remote-tail │ │ │ ├── bin │ │ │ │ └── my-tailer.sh │ │ │ └── flow.cylc │ │ ├── 06-log-rotation.t │ │ ├── 09-cat-running.t │ │ ├── 09-cat-running │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 10-remote-no-retrieve.t │ │ ├── 11-remote-retrieve.t │ │ ├── 12-delete-kill.t │ │ ├── 13-remote-out-err-tailer.t │ │ ├── 13-remote-out-err-tailer │ │ │ └── flow.cylc │ │ ├── 14-auto-mode.t │ │ ├── 14-auto-mode │ │ │ ├── bin │ │ │ │ └── my-tailer.sh │ │ │ └── flow.cylc │ │ ├── 15-remote_when_no_local_log.t │ │ ├── 15-remote_when_no_local_log │ │ │ └── flow.cylc │ │ ├── remote-simple │ │ │ └── flow.cylc │ │ └── test_header │ ├── cylc-clean │ │ ├── 00-basic.t │ │ ├── 01-remote.t │ │ ├── 02-targeted.t │ │ ├── 03-multi.t │ │ ├── 04-runN.t │ │ ├── 05-old-remote-contact.t │ │ ├── 06-nfs.t │ │ ├── basic-workflow │ │ │ └── flow.cylc │ │ └── test_header │ ├── cylc-combination-scripts │ │ ├── 00-vip.t │ │ ├── 00-vip │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-vr-reload.t │ │ ├── 02-vr-restart.t │ │ ├── 04-vr-fail-validate.t │ │ ├── 05-vr-fail-is-running.t │ │ ├── 06-vip-named-run │ │ ├── 06-vip-named-run.t │ │ ├── 07-vr-remote.t │ │ ├── 08-vr-against-src.t │ │ ├── 09-vr-icp-now.t │ │ ├── 09-vr-icp-now │ │ │ └── flow.cylc │ │ ├── 10-CYLC_WORKFLOW_SRC_DIR.t │ │ ├── test_header │ │ ├── vr_workflow │ │ │ └── flow.cylc │ │ ├── vr_workflow_fail_on_play │ │ │ └── flow.cylc │ │ └── vr_workflow_stop │ │ │ └── flow.cylc │ ├── cylc-config │ │ ├── 00-simple.t │ │ ├── 00-simple │ │ │ ├── flow.cylc │ │ │ ├── section1.stdout │ │ │ └── section2.stdout │ │ ├── 01-no-final.t │ │ ├── 01-no-final │ │ │ └── flow.cylc │ │ ├── 02-cycling.t │ │ ├── 02-cycling │ │ │ └── flow.cylc │ │ ├── 03-icp.t │ │ ├── 05-param-vars.t │ │ ├── 05-param-vars │ │ │ └── flow.cylc │ │ ├── 06-compat.t │ │ ├── 07-failif-item-in-platforms-and-groups.t │ │ ├── 08-item-not-found.t │ │ ├── 09-platforms.t │ │ ├── 10-platform-expansion.t │ │ └── test_header │ ├── cylc-diff │ │ ├── 00-basic.t │ │ ├── 01-same.t │ │ ├── 02-identical.t │ │ ├── 03-icp.t │ │ ├── 04-icp-2.t │ │ └── test_header │ ├── cylc-get-cylc-version │ │ ├── 00-basic.t │ │ ├── 00-basic │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── cylc-get-resources │ │ ├── 00-error.t │ │ └── test_header │ ├── cylc-get-site-config │ │ ├── 00-basic.t │ │ ├── 01-defaults.t │ │ ├── 02-jinja2.t │ │ ├── 03-host-bool-override.t │ │ ├── 04-homeless.t │ │ ├── 05-host-bool-override.t │ │ └── test_header │ ├── cylc-get-workflow-contact │ │ ├── 00-basic.t │ │ └── test_header │ ├── cylc-graph-diff │ │ ├── 00-simple-control │ │ │ └── flow.cylc │ │ ├── 00-simple-diffs │ │ │ └── flow.cylc │ │ ├── 00-simple-same │ │ ├── 00-simple.t │ │ ├── 01-icp.t │ │ └── test_header │ ├── cylc-install │ │ ├── 00-simple.t │ │ ├── 01-symlinks.t │ │ ├── 02-failures.t │ │ ├── 03-file-transfer.t │ │ ├── 04-symlinks-not-resolved.t │ │ ├── 05-check-logs-git.t │ │ ├── 06-check-logs-svn.t │ │ ├── 07-no-recursive-installations.t │ │ └── test_header │ ├── cylc-kill │ │ ├── 00-multi-hosts-compat.t │ │ ├── 00-multi-hosts-compat │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-multi-hosts.t │ │ ├── 01-multi-hosts │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-submitted.t │ │ ├── 02-submitted │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-handlers.t │ │ ├── 04-handlers │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-retries.t │ │ ├── 05-retries │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── cylc-lint │ │ ├── 00.lint.t │ │ ├── 01.lint-toml.t │ │ └── test_header │ ├── cylc-list │ │ ├── 00-options │ │ ├── 00-options.t │ │ ├── 01-icp.t │ │ ├── test_header │ │ └── workflow │ │ │ └── flow.cylc │ ├── cylc-message │ │ ├── 00-ssh.t │ │ ├── 00-ssh │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-newline.t │ │ ├── 02-multi.t │ │ └── test_header │ ├── cylc-ping │ │ ├── 00-simple.t │ │ ├── 00-simple │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-check-keys-local.t │ │ ├── 04-check-keys-remote.t │ │ └── test_header │ ├── cylc-play │ │ ├── 00-contact.t │ │ ├── 01-profiler.t │ │ ├── 02-format.t │ │ ├── 03-remote-run-host.t │ │ ├── 04-no-install.t │ │ ├── 06-warnif-scp-after-fcp.t │ │ ├── 07-timezones-compat.t │ │ ├── 08-provided-vars.t │ │ ├── 09-invalid-cp-opt.t │ │ ├── 10-start-task-upgrade.t │ │ ├── 11-remote-reinvoke-uncontactable.t │ │ ├── 12-play-pause-paused.t │ │ └── test_header │ ├── cylc-poll │ │ ├── 00-basic.t │ │ ├── 00-basic │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-task-failed.t │ │ ├── 01-task-failed │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-task-submit-failed.t │ │ ├── 02-task-submit-failed │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-poll-multi-hosts.t │ │ ├── 04-poll-multi-hosts │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-poll-multi-messages.t │ │ ├── 05-poll-multi-messages │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 06-loadleveler.t │ │ ├── 06-loadleveler │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 07-pbs.t │ │ ├── 07-pbs │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 08-slurm.t │ │ ├── 08-slurm │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 09-lsf.t │ │ ├── 09-lsf │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 10-basic-compat.t │ │ ├── 10-basic-compat │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 11-event-time.t │ │ ├── 11-event-time │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 13-comm-method.t │ │ ├── 13-comm-method │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 14-intervals.t │ │ ├── 14-intervals │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 15-job-st-file-no-batch.t │ │ ├── 15-job-st-file-no-batch │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 17-pbs-cant-connect.t │ │ ├── 17-pbs-cant-connect │ │ │ ├── flow.cylc │ │ │ ├── lib │ │ │ │ └── python │ │ │ │ │ ├── badqstat │ │ │ │ │ └── my_pbs.py │ │ │ └── reference.log │ │ └── test_header │ ├── cylc-reinstall │ │ ├── 00-simple.t │ │ ├── 01-file-transfer.t │ │ ├── 02-failures.t │ │ ├── 03-external-files.t │ │ └── test_header │ ├── cylc-remove │ │ ├── 00-simple.t │ │ ├── 00-simple │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-cycling.t │ │ ├── 02-cycling │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-flow.t │ │ ├── 04-kill.t │ │ ├── 04-kill │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── cylc-set │ │ ├── 00-set-succeeded.t │ │ ├── 00-set-succeeded │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-off-flow-pre.t │ │ ├── 01-off-flow-pre │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-off-flow-out.t │ │ ├── 02-off-flow-out │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-set-failed.t │ │ ├── 03-set-failed │ │ │ └── flow.cylc │ │ ├── 04-switch.t │ │ ├── 04-switch │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-expire.t │ │ ├── 05-expire │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 06-parentless.t │ │ ├── 06-parentless │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 08-switch2.t │ │ ├── 08-switch2 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 09-set-skip.t │ │ ├── 09-set-skip │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── cylc-show │ │ ├── 05-complex.t │ │ ├── 05-complex │ │ │ └── flow.cylc │ │ ├── 06-past-present-future.t │ │ ├── 06-past-present-future │ │ │ └── flow.cylc │ │ ├── clock-triggered-non-utc-mode │ │ │ ├── flow.cylc │ │ │ └── reference-untz.log │ │ └── test_header │ ├── cylc-subscribe │ │ ├── 01-subscribe.t │ │ └── test_header │ ├── cylc-trigger │ │ ├── 00-compat.t │ │ ├── 00-compat │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-queued.t │ │ ├── 01-queued │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-filter-failed.t │ │ ├── 02-filter-failed │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-filter-names.t │ │ ├── 04-filter-names │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 06-already-active.t │ │ ├── 06-already-active │ │ │ └── flow.cylc │ │ ├── 07-kill-trigger.t │ │ ├── 07-kill-trigger │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── cylc-view │ │ ├── 00-single-inc.t │ │ ├── 00-single-inc │ │ │ ├── flow.cylc │ │ │ └── inc │ │ │ │ └── default.jinja2 │ │ └── test_header │ ├── data-store │ │ ├── 00-prune-optional-break.t │ │ └── test_header │ ├── database │ │ ├── 03-remote.t │ │ ├── 03-remote │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-lock-recover.t │ │ ├── 04-lock-recover │ │ │ ├── bin │ │ │ │ └── cylc-db-lock │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-lock-recover-100.t │ │ ├── 05-lock-recover-100 │ │ │ ├── bin │ │ │ │ └── cylc-db-lock │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 06-task-message.t │ │ ├── 06-task-message │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 07-incompatible.t │ │ ├── 07-incompatible │ │ │ ├── db.sqlite3 │ │ │ └── flow.cylc │ │ ├── 08-broadcast-upgrade.t │ │ ├── 08-broadcast-upgrade │ │ │ ├── db.sqlite3 │ │ │ └── flow.cylc │ │ └── test_header │ ├── deprecations │ │ ├── 01-cylc8-basic.t │ │ ├── 01-cylc8-basic │ │ │ ├── flow.cylc │ │ │ └── validation.stderr │ │ ├── 02-overwrite.t │ │ ├── 02-overwrite │ │ │ └── flow.cylc │ │ ├── 03-suiterc.t │ │ └── test_header │ ├── directives │ │ ├── 00-loadleveler.t │ │ ├── 01-at.t │ │ ├── 01-at │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-slurm.t │ │ ├── 03-pbs.t │ │ ├── loadleveler │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── pbs │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── slurm │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── empy │ │ ├── 00-simple │ │ │ └── flow.cylc-expanded │ │ └── test_header │ ├── env-filter │ │ ├── 00-filter.t │ │ └── test_header │ ├── events │ │ ├── 00-workflow.t │ │ ├── 00-workflow │ │ │ └── flow.cylc │ │ ├── 01-timeout.t │ │ ├── 02-multi.t │ │ ├── 03-stall-timeout.t │ │ ├── 04-stall-timeout-ref-live.t │ │ ├── 06-stall-timeout-ref-simulation.t │ │ ├── 09-task-event-mail.t │ │ ├── 09-task-event-mail │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 10-task-event-job-logs-retrieve.t │ │ ├── 10-task-event-job-logs-retrieve │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 11-cycle-task-event-job-logs-retrieve.t │ │ ├── 11-cycle-task-event-job-logs-retrieve │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 13-task-event-mail-globalcfg │ │ ├── 13-task-event-mail-globalcfg.t │ │ ├── 17-task-event-job-logs-retrieve-command │ │ ├── 17-task-event-job-logs-retrieve-command.t │ │ ├── 18-workflow-event-mail.t │ │ ├── 18-workflow-event-mail │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 19-workflow-event-mail-globalcfg │ │ ├── 19-workflow-event-mail-globalcfg.t │ │ ├── 20-workflow-event-handlers.t │ │ ├── 20-workflow-event-handlers │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 21-workflow-event-handlers-globalcfg │ │ ├── 21-workflow-event-handlers-globalcfg.t │ │ ├── 23-workflow-stalled-handler.t │ │ ├── 23-workflow-stalled-handler │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 24-workflow-timeout.t │ │ ├── 24-workflow-timeout │ │ │ └── flow.cylc │ │ ├── 25-held-not-stalled.t │ │ ├── 25-held-not-stalled │ │ │ └── flow.cylc │ │ ├── 26-workflow-stalled-dump-prereq.t │ │ ├── 26-workflow-stalled-dump-prereq │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 27-workflow-stalled-dump-prereq-fam.t │ │ ├── 27-workflow-stalled-dump-prereq-fam │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 28-inactivity.t │ │ ├── 28-inactivity │ │ │ └── flow.cylc │ │ ├── 29-task-event-mail-1.t │ │ ├── 29-task-event-mail-1 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 30-task-event-mail-2.t │ │ ├── 30-task-event-mail-2 │ │ │ └── flow.cylc │ │ ├── 32-task-event-job-logs-retrieve-2.t │ │ ├── 32-task-event-job-logs-retrieve-2 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 33-task-event-job-logs-retrieve-3.t │ │ ├── 33-task-event-job-logs-retrieve-3 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 34-task-abort.t │ │ ├── 34-task-abort │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 35-task-event-handler-importance.t │ │ ├── 35-task-event-handler-importance │ │ │ └── flow.cylc │ │ ├── 37-workflow-event-bad-custom-template.t │ │ ├── 37-workflow-event-bad-custom-template │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 38-task-event-handler-custom.t │ │ ├── 38-task-event-handler-custom │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 41-late.t │ │ ├── 41-late │ │ │ ├── bin │ │ │ │ └── my-handler │ │ │ └── flow.cylc │ │ ├── 42-late-then-restart.t │ │ ├── 42-late-then-restart │ │ │ ├── bin │ │ │ │ └── my-handler │ │ │ └── flow.cylc │ │ ├── 43-late-spawn.t │ │ ├── 43-late-spawn │ │ │ └── flow.cylc │ │ ├── 45-task-event-handler-multi-warning.t │ │ ├── 46-task-output-as-event.t │ │ ├── 47-long-output.t │ │ ├── 48-workflow-aborted.t │ │ ├── 48-workflow-aborted │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 50-ref-test-fail │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 51-task-event-job-logs-retrieve-4.t │ │ ├── stall-timeout-ref │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── stall-timeout │ │ │ └── flow.cylc │ │ ├── test_header │ │ └── timeout │ │ │ └── flow.cylc │ ├── execution-time-limit │ │ ├── 02-slurm.t │ │ ├── 02-slurm │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-pbs │ │ ├── 03-pbs.t │ │ ├── 04-polling-intervals.t │ │ └── test_header │ ├── ext-trigger │ │ ├── 00-satellite.t │ │ ├── 00-satellite │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-no-nudge.t │ │ ├── 01-no-nudge │ │ │ └── flow.cylc │ │ ├── 02-cycle-point.t │ │ ├── 02-cycle-point │ │ │ └── flow.cylc │ │ └── test_header │ ├── flow-triggers │ │ ├── 00-new-future.t │ │ ├── 00-new-future │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-all-future.t │ │ ├── 01-all-future │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-none-future.t │ │ ├── 02-none-future │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-new-past.t │ │ ├── 03-new-past │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-all-past.t │ │ ├── 04-all-past │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-none-past.t │ │ ├── 05-none-past │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 06-new-past-switch.t │ │ ├── 06-new-past-switch │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 07-all-past-switch.t │ │ ├── 07-all-past-switch │ │ │ ├── flow.cylc │ │ │ ├── reflog-no-wait.log │ │ │ └── reflog-wait.log │ │ ├── 08-none-past-switch.t │ │ ├── 08-none-past-switch │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 10-specific-flow.t │ │ ├── 10-specific-flow │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 11-wait-merge.t │ │ ├── 11-wait-merge │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 12-all-future-multi.t │ │ ├── 12-all-future-multi │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 13-noflow-nomerge.t │ │ ├── 13-noflow-nomerge │ │ │ └── flow.cylc │ │ └── test_header │ ├── graph-equivalence │ │ ├── 00-oneline.t │ │ ├── 01-twolines.t │ │ ├── 02-splitline.t │ │ ├── 03-multiline_and1.t │ │ ├── 04-multiline_and2.t │ │ ├── multiline_and1 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── multiline_and2 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── multiline_and_refs │ │ │ ├── c-ref │ │ │ └── c-ref-2 │ │ ├── splitline_refs │ │ │ ├── a-ref │ │ │ ├── b-ref │ │ │ └── c-ref │ │ ├── test1 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── test2 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── test3 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── graphing │ │ ├── 00-boundaries.t │ │ ├── 00-boundaries │ │ │ ├── 20140808T00.graph.plain.ref │ │ │ ├── 20140808T06.graph.plain.ref │ │ │ └── flow.cylc │ │ ├── 01-namespace.t │ │ ├── 01-namespace │ │ │ ├── flow.cylc │ │ │ └── graph.plain.ref │ │ ├── 02-icp-task-missing.t │ │ ├── 02-icp-task-missing │ │ │ ├── flow.cylc │ │ │ └── graph.plain.ref │ │ ├── 05-suicide-family.t │ │ ├── 05-suicide-family │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── graph.plain.suicide.ref │ │ ├── 06-family-or.t │ │ ├── 07-stop-at-final-point.t │ │ ├── 07-stop-at-final-point │ │ │ ├── flow.cylc │ │ │ └── graph.plain.ref │ │ ├── 08-ungrouped.t │ │ ├── 08-ungrouped │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── graph.plain.ungrouped.ref │ │ ├── 09-close-fam.t │ │ ├── 09-close-fam │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── graph.plain.ungrouped.ref │ │ ├── 09-ref-graph.t │ │ ├── 09-ref-graph │ │ │ ├── flow.cylc │ │ │ └── graph.ref │ │ ├── 10-ghost-nodes.t │ │ ├── 10-ghost-nodes │ │ │ ├── flow.cylc │ │ │ └── graph.plain.ref │ │ ├── 11-nested-fam.t │ │ ├── 11-nested-fam │ │ │ ├── flow.cylc │ │ │ ├── graph.plain.ref │ │ │ └── graph.plain.ungrouped.ref │ │ └── test_header │ ├── graphql │ │ ├── 01-workflow.t │ │ ├── 01-workflow │ │ │ └── flow.cylc │ │ ├── 03-is-held-arg.t │ │ └── test_header │ ├── hold-release │ │ ├── 00-workflow.t │ │ ├── 00-workflow │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-beyond-stop.t │ │ ├── 01-beyond-stop │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-hold-on-spawn.t │ │ ├── 05-release.t │ │ ├── 08-hold.t │ │ ├── 11-retrying.t │ │ ├── 11-retrying │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 17-hold-after-point.t │ │ ├── 17-hold-after-point │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 18-hold-cycle-globs.t │ │ ├── 18-hold-cycle-globs │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 19-no-reset-prereq-on-waiting.t │ │ ├── 19-no-reset-prereq-on-waiting │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── include-files │ │ ├── 00-basic.t │ │ ├── test_header │ │ └── workflow │ │ │ ├── body.cylc │ │ │ ├── flow.cylc │ │ │ ├── ref-inlined.cylc │ │ │ ├── runtime.cylc │ │ │ └── scheduling.cylc │ ├── inheritance │ │ ├── 00-namespace-list.t │ │ ├── 00-namespace-list │ │ │ └── flow.cylc │ │ ├── 01-circular.t │ │ ├── 01-circular │ │ │ └── flow.cylc │ │ ├── 02-bad-reinherit.t │ │ ├── 02-bad-reinherit │ │ │ └── flow.cylc │ │ └── test_header │ ├── intelligent-host-selection │ │ ├── 00-mixedhost.t │ │ ├── 00-mixedhost │ │ │ └── flow.cylc │ │ ├── 01-periodic-clear-badhosts.t │ │ ├── 01-periodic-clear-badhosts │ │ │ ├── bin │ │ │ │ └── mock-ssh │ │ │ └── flow.cylc │ │ ├── 02-badhosts.t │ │ ├── 02-badhosts │ │ │ └── flow.cylc │ │ ├── 03-polling.t │ │ ├── 03-polling │ │ │ └── flow.cylc │ │ ├── 04-kill.t │ │ ├── 04-kill │ │ │ └── flow.cylc │ │ ├── 05-from-platform-group.t │ │ ├── 05-from-platform-group │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 06-from-platform-group-fails.t │ │ ├── 06-from-platform-group-fails │ │ │ └── flow.cylc │ │ ├── 07-cylc7-badhost.t │ │ ├── lib │ │ │ └── python │ │ │ │ └── my_background.py │ │ └── test_header │ ├── intercycle │ │ ├── 00-past.t │ │ ├── 00-past │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-future.t │ │ ├── 01-future │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-integer-abs.t │ │ ├── 02-integer-abs │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-datetime-abs.t │ │ ├── 03-datetime-abs │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-datetime-abs-2.t │ │ ├── 04-datetime-abs-2 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-datetime-abs-3.t │ │ ├── 05-datetime-abs-3 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── jinja2 │ │ ├── 00-simple.t │ │ ├── 01-include.t │ │ ├── 03-bad.t │ │ ├── 05-commandline.t │ │ ├── 06-do-extension.t │ │ ├── 07-filters.t │ │ ├── 08-local-lib-python.t │ │ ├── 08-local-lib-python │ │ │ ├── Jinja2Filters │ │ │ │ └── qualify.py │ │ │ ├── flow.cylc │ │ │ ├── flow.cylc.jproc │ │ │ └── lib │ │ │ │ └── python │ │ │ │ └── local_lookup.py │ │ ├── 09-custom-jinja2-filters.t │ │ ├── 09-custom-jinja2-filters │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 11-logging.t │ │ ├── badsyntax │ │ │ └── flow.cylc │ │ ├── commandline-set │ │ │ ├── flow.cylc │ │ │ ├── reference.log │ │ │ └── vars.txt │ │ ├── cylc-include-badsyntax │ │ │ ├── flow-includeme.cylc │ │ │ └── flow.cylc │ │ ├── do-extension │ │ │ └── flow.cylc │ │ ├── filters │ │ │ ├── Jinja2Filters │ │ │ │ ├── hello.py │ │ │ │ └── truly.py │ │ │ ├── flow.cylc │ │ │ └── flow.cylc-expanded │ │ ├── include-badsyntax │ │ │ ├── flow.cylc │ │ │ └── runtime-bad.cylc │ │ ├── include-incomplete │ │ │ ├── flow.cylc │ │ │ └── runtime-incomplete.cylc │ │ ├── include-missing │ │ │ └── flow.cylc │ │ ├── include │ │ │ ├── flow.cylc │ │ │ ├── flow.cylc-expanded │ │ │ └── runtime.cylc │ │ ├── simple │ │ │ ├── flow.cylc │ │ │ └── flow.cylc-expanded │ │ └── test_header │ ├── job-file-trap │ │ ├── 00-sigusr1.t │ │ ├── 00-sigusr1 │ │ │ ├── flow.cylc │ │ │ ├── python │ │ │ │ └── background_vacation.py │ │ │ └── reference.log │ │ ├── 01-loadleveler.t │ │ ├── 01-loadleveler │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-pipefail.t │ │ ├── 02-pipefail │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-user-trap.t │ │ └── test_header │ ├── job-kill │ │ ├── 00-local.t │ │ ├── 00-local │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-remote.t │ │ ├── 01-remote │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-loadleveler.t │ │ ├── 02-loadleveler │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-slurm.t │ │ ├── 03-slurm │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-pbs.t │ │ ├── 04-pbs │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── job-submission │ │ ├── 00-user.t │ │ ├── 00-user │ │ │ ├── flow.cylc │ │ │ ├── lib │ │ │ │ └── python │ │ │ │ │ └── my_background2.py │ │ │ ├── python │ │ │ │ └── my_background.py │ │ │ └── reference.log │ │ ├── 01-job-nn-localhost.t │ │ ├── 01-job-nn-localhost │ │ │ ├── db.sqlite3 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-job-nn-remote-host │ │ ├── 02-job-nn-remote-host.t │ │ ├── 03-job-nn-remote-host-with-shared-fs │ │ ├── 03-job-nn-remote-host-with-shared-fs.t │ │ ├── 04-submit-num.t │ │ ├── 04-submit-num │ │ │ └── flow.cylc │ │ ├── 06-garbage.t │ │ ├── 06-garbage │ │ │ ├── flow.cylc │ │ │ ├── lib │ │ │ │ └── bad.py │ │ │ └── reference.log │ │ ├── 07-multi.t │ │ ├── 07-multi │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 08-activity-log-host.t │ │ ├── 08-activity-log-host │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 09-activity-log-host-bad-submit.t │ │ ├── 09-activity-log-host-bad-submit │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 10-at-shell.t │ │ ├── 10-at-shell │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 11-garbage-platform-command.t │ │ ├── 11-garbage-platform-command │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 12-tidy-submits-of-prev-run.t │ │ ├── 12-tidy-submits-of-prev-run │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 13-tidy-submits-of-prev-run-remote-host │ │ ├── 13-tidy-submits-of-prev-run-remote-host.t │ │ ├── 14-tidy-submits-of-prev-run-remote-host-with-shared-fs │ │ ├── 14-tidy-submits-of-prev-run-remote-host-with-shared-fs.t │ │ ├── 15-garbage-platform-command-2.t │ │ ├── 15-garbage-platform-command-2 │ │ │ ├── bin │ │ │ │ └── my-host-select │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 16-timeout.t │ │ ├── 16-timeout │ │ │ └── flow.cylc │ │ ├── 17-remote-localtime.t │ │ ├── 17-remote-localtime │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 18-clean-env.t │ │ ├── 18-clean-env │ │ │ └── flow.cylc │ │ ├── 19-platform_select.t │ │ ├── 19-platform_select │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 20-check-chunking.t │ │ ├── 20-check-chunking │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 21-late-sub-message.t │ │ ├── 21-late-sub-message │ │ │ ├── flow.cylc │ │ │ └── lib │ │ │ │ └── python │ │ │ │ └── delayed_background.py │ │ └── test_header │ ├── jobscript │ │ ├── 00-torture.t │ │ ├── 00-torture │ │ │ ├── bin │ │ │ │ └── foo.sh │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-share-lib-bin.t │ │ ├── 01-share-lib-bin │ │ │ └── flow.cylc │ │ ├── 02-share-cycle-cycle.t │ │ ├── 02-share-cycle-cycle │ │ │ └── flow.cylc │ │ └── test_header │ ├── lib │ │ ├── bash │ │ │ └── test_header │ │ └── python │ │ │ ├── diffr.py │ │ │ └── test_diffr.py │ ├── logging │ │ ├── 01-basic.t │ │ ├── 02-duplicates.t │ │ ├── 02-duplicates │ │ │ └── flow.cylc │ │ ├── 03-roll.t │ │ ├── 04-dev_mode.t │ │ ├── 05-validation-detach.t │ │ └── test_header │ ├── message-triggers │ │ ├── 00-basic.t │ │ ├── 00-basic │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-action.t │ │ ├── 02-action │ │ │ └── flow.cylc │ │ └── test_header │ ├── n-window │ │ ├── 01-past-present-future.t │ │ ├── 01-past-present-future │ │ │ └── flow.cylc │ │ ├── 02-big-window.t │ │ ├── 02-big-window │ │ │ └── flow.cylc │ │ └── test_header │ ├── offset │ │ ├── 00-final-simple.t │ │ ├── 00-final-simple │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-final-next.t │ │ ├── 01-final-next │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-final-chain.t │ │ ├── 02-final-chain │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-final-next-chain.t │ │ ├── 03-final-next-chain │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-cycle-offset-chain.t │ │ ├── 04-cycle-offset-chain │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-long-final-chain.t │ │ ├── 05-long-final-chain │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── optional-outputs │ │ ├── 00-stall-on-partial.t │ │ ├── 00-stall-on-partial │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-stall-on-incomplete.t │ │ ├── 01-stall-on-incomplete │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-no-stall-on-optional.t │ │ ├── 02-no-stall-on-optional │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-c7backcompat.t │ │ ├── 03-c7backcompat │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-c7backcompat-blocked-task.t │ │ ├── 04-c7backcompat-blocked-task │ │ │ └── suite.rc │ │ ├── 05-c7backcompat-blocked-task-2.t │ │ ├── 05-c7backcompat-blocked-task-2 │ │ │ └── suite.rc │ │ ├── 06-c7backcompat-family.t │ │ ├── 06-c7backcompat-family │ │ │ └── suite.rc │ │ ├── 07-finish-fail-c7-backcompat.t │ │ ├── 08-finish-fail-c7-c8.t │ │ ├── finish-fail-c7 │ │ │ └── suite.rc │ │ └── test_header │ ├── param_expand │ │ ├── 01-basic.t │ │ ├── 01-basic │ │ │ ├── 01.graph.ref │ │ │ ├── 02.graph.ref │ │ │ ├── 03.graph.ref │ │ │ ├── 04.graph.ref │ │ │ ├── 07.graph.ref │ │ │ ├── 11.graph.ref │ │ │ ├── 12.graph.ref │ │ │ ├── 13.graph.ref │ │ │ ├── 14.graph.ref │ │ │ ├── 15.graph.ref │ │ │ ├── 16.graph.ref │ │ │ ├── 17.graph.ref │ │ │ ├── 18.graph.ref │ │ │ └── 19.graph.ref │ │ ├── 02-param_val.t │ │ ├── 02-param_val │ │ │ ├── 06.graph.ref │ │ │ ├── graph-exp-1.ref │ │ │ ├── graph-exp-b.ref │ │ │ ├── graph-fam-1.ref │ │ │ ├── graph-fam-b.ref │ │ │ ├── graph-nam-1.ref │ │ │ └── graph-nam-b.ref │ │ ├── 03-env-tmpl.t │ │ ├── 03-env-tmpl │ │ │ ├── flow.cylc │ │ │ ├── reference.log │ │ │ ├── t1-0099-that.ref │ │ │ ├── t1-0099-this.ref │ │ │ ├── t1-0101-that.ref │ │ │ ├── t1-0101-this.ref │ │ │ ├── t2-0099-that.ref │ │ │ ├── t2-0099-this.ref │ │ │ ├── t2-0101-that.ref │ │ │ └── t2-0101-this.ref │ │ └── test_header │ ├── pause-resume │ │ ├── 00-workflow.t │ │ ├── 00-workflow │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-beyond-stop.t │ │ ├── 01-beyond-stop │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-paused-not-stalled.t │ │ ├── 12-pause-then-retry.t │ │ ├── 12-pause-then-retry │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 21-client.t │ │ ├── 21-client │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── periodicals │ │ ├── 00-daily.t │ │ ├── 01-daily.t │ │ ├── 02-daily.t │ │ ├── 03-monthly.t │ │ ├── 04-monthly.t │ │ ├── 05-monthly.t │ │ ├── 06-yearly.t │ │ ├── 07-yearly.t │ │ ├── 08-yearly.t │ │ ├── 09-monthly-reorder.t │ │ ├── Daily │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── Monthly-reorder │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── Monthly │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── README │ │ ├── Yearly │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── platforms │ │ ├── 01-platform-basic.t │ │ ├── 02-host-to-platform-upgrade.t │ │ ├── 02-host-to-platform-upgrade │ │ │ ├── bad │ │ │ │ └── flow.cylc │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-platform-db.t │ │ ├── 03-platform-db │ │ │ └── flow.cylc │ │ ├── 04-host-to-platform-upgrade-fail-inherit.t │ │ ├── 04-host-to-platform-upgrade-fail-inherit │ │ │ └── flow.cylc │ │ ├── 05-host-to-platform-upgrade-fail.t │ │ ├── 05-host-to-platform-upgrade-fail │ │ │ └── flow.cylc │ │ ├── 06-host-to-platform-upgrade-dummy-mode.t │ │ ├── 06-host-to-platform-upgrade-dummy-mode │ │ │ └── flow.cylc │ │ ├── 07-localhost-set-if-not-in-globalcfg.t │ │ ├── 07-localhost-set-if-not-in-globalcfg │ │ │ └── flow.cylc │ │ ├── 08-warn-if-regex-matches-localhost.t │ │ ├── 09-default-directives.t │ │ ├── 10-do-not-host-check-platforms.t │ │ ├── 11-platform-gone-on-restart.t │ │ ├── 12-ping-pong.t │ │ ├── 12-ping-pong │ │ │ └── flow.cylc │ │ ├── 13-ping-pong-host.t │ │ ├── 13-ping-pong-host │ │ │ └── flow.cylc │ │ ├── 14-trigger-paused-subshell.t │ │ ├── 14-trigger-paused-subshell │ │ │ ├── flow.cylc │ │ │ └── toggle_platform.sh │ │ └── test_header │ ├── post-install │ │ ├── 00-log-vc-info.t │ │ └── test_header │ ├── pre-initial │ │ ├── 00-simple.t │ │ ├── 00-simple │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-warm.t │ │ ├── 05-warm-new-ict.t │ │ ├── 07-simple-messaging.t │ │ ├── 07-simple-messaging │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 08-conditional-messaging.t │ │ ├── 08-conditional-messaging │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 09-warm-iso.t │ │ ├── 10-warm-insert.t │ │ ├── 12-warm-restart.t │ │ ├── test_header │ │ ├── warm-insert │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── warm-offset │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── warm-start-iso │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── warm-start │ │ │ ├── flow.cylc │ │ │ └── reference.log │ ├── queues │ │ ├── 00-queuesize-3.t │ │ ├── 01-queuesize-5.t │ │ ├── 02-queueorder.t │ │ ├── 02-queueorder │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── qsize │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── recurrence-min │ │ ├── 00-basic.t │ │ ├── 00-basic │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-offset-initial.t │ │ ├── 01-offset-initial │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-offset-truncated.t │ │ ├── 02-offset-truncated │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-neg-offset-truncated.t │ │ ├── 03-neg-offset-truncated │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── reload │ │ ├── 00-simple.t │ │ ├── 00-simple │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-startup.t │ │ ├── 01-startup │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-content.t │ │ ├── 02-content │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-queues.t │ │ ├── 03-queues │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-inheritance.t │ │ ├── 04-inheritance │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-graphing-simple.t │ │ ├── 05-graphing-simple │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 06-graphing-fam.t │ │ ├── 06-graphing-fam │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 07-final-cycle.t │ │ ├── 07-final-cycle │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 08-cycle.t │ │ ├── 08-cycle │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 09-garbage.t │ │ ├── 10-runahead.t │ │ ├── 11-retrying.t │ │ ├── 11-retrying │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 12-remove-task.t │ │ ├── 12-remove-task │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 13-add-task.t │ │ ├── 13-add-task │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 14-waiting.t │ │ ├── 14-waiting │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 15-state-summary.t │ │ ├── 16-remove-add-alter-task.t │ │ ├── 16-remove-add-alter-task │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 17-graphing-change.t │ │ ├── 18-broadcast-insert.t │ │ ├── 18-broadcast-insert │ │ │ ├── flow-2.cylc │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 19-remote-kill.t │ │ ├── 19-remote-kill │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 20-stop-point.t │ │ ├── 20-stop-point │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 21-submit-fail │ │ │ └── flow.cylc │ │ ├── 22-remove-task-cycling.t │ │ ├── 23-cycle-point-time-zone.t │ │ ├── 24-reload-file-install.t │ │ ├── 24-reload-file-install │ │ │ └── flow.cylc │ │ ├── 25-xtriggers.t │ │ ├── 26-stalled.t │ │ ├── 27-stall-retrigger.t │ │ ├── 27-stall-retrigger │ │ │ ├── bin │ │ │ │ └── stall-handler.sh │ │ │ ├── reference.log │ │ │ └── suite.rc │ │ ├── 28-preparing.t │ │ ├── 28-preparing │ │ │ └── flow.cylc │ │ ├── 29-global.t │ │ ├── 29-global │ │ │ └── flow.cylc │ │ ├── 30-global-rollback.t │ │ ├── 30-global-rollback │ │ │ └── flow.cylc │ │ ├── garbage │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── graphing-change │ │ │ ├── flow-1.cylc │ │ │ ├── flow-2.cylc │ │ │ └── flow.cylc │ │ ├── runahead │ │ │ └── flow.cylc │ │ └── test_header │ ├── remote │ │ ├── 00-basic.t │ │ ├── 01-file-install.t │ │ ├── 02-install-target.t │ │ ├── 03-polled-task-started.t │ │ ├── 03-polled-task-started │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-symlink-dirs.t │ │ ├── 04-symlink-dirs │ │ │ └── flow.cylc │ │ ├── 05-remote-init.t │ │ ├── 05-remote-init │ │ │ └── flow.cylc │ │ ├── 06-poll.t │ │ ├── 07-slow-file-install.t │ │ ├── 07-slow-file-install │ │ │ ├── bin │ │ │ │ └── my-rsync.sh │ │ │ └── flow.cylc │ │ ├── 08-symlink-dir-target-exist.t │ │ ├── 09-restart-running-file-install.t │ │ ├── basic │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── repeated-items │ │ ├── 00-one.t │ │ ├── one │ │ │ └── flow.cylc │ │ └── test_header │ ├── restart │ │ ├── 00-pre-initial.t │ │ ├── 00-pre-initial │ │ │ ├── flow.cylc │ │ │ └── ref-state │ │ ├── 01-broadcast.t │ │ ├── 02-failed.t │ │ ├── 03-retrying.t │ │ ├── 04-running.t │ │ ├── 05-submit-failed.t │ │ ├── 06-succeeded.t │ │ ├── 07-waiting.t │ │ ├── 08-stop-after-cycle-point.t │ │ ├── 08-stop-after-cycle-point │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 09-reload.t │ │ ├── 10-pre-initial-2.t │ │ ├── 12-deleted-logs.t │ │ ├── 13-bad-job-host.t │ │ ├── 16-template-vars.t │ │ ├── 16-template-vars │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 17-template-vars-file │ │ ├── 17-template-vars-file.t │ │ ├── 18-template-vars-override.t │ │ ├── 18-template-vars-override │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 20-event-retry.t │ │ ├── 20-event-retry │ │ │ ├── bin │ │ │ │ └── my-handler │ │ │ └── flow.cylc │ │ ├── 22-hold.t │ │ ├── 22-hold │ │ │ └── flow.cylc │ │ ├── 23-hold-retry.t │ │ ├── 23-hold-retry │ │ │ └── flow.cylc │ │ ├── 25-hold-workflow.t │ │ ├── 25-hold-workflow │ │ │ └── flow.cylc │ │ ├── 26-remote-kill.t │ │ ├── 26-remote-kill │ │ │ └── flow.cylc │ │ ├── 27-broadcast-timeout.t │ │ ├── 27-broadcast-timeout │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 28-execution-timeout.t │ │ ├── 28-execution-timeout │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 30-outputs.t │ │ ├── 30-outputs │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 32-reload-runahead-no-stop-point.t │ │ ├── 32-reload-runahead-no-stop-point │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 33-simulation.t │ │ ├── 34-auto-restart-basic.t │ │ ├── 35-auto-restart-recovery.t │ │ ├── 37-auto-restart-delay.t │ │ ├── 38-auto-restart-stopping.t │ │ ├── 41-auto-restart-local-jobs.t │ │ ├── 42-auto-restart-ping-pong.t │ │ ├── 43-auto-restart-force-override-normal.t │ │ ├── 44-reinvoke.t │ │ ├── 45-stop-task.t │ │ ├── 50-two-flows.t │ │ ├── 50-two-flows │ │ │ ├── flow.cylc │ │ │ ├── reference.log │ │ │ └── reference.restart.log │ │ ├── 51-final-point-reload.t │ │ ├── 52-cycle-point-time-zone.t │ │ ├── 53-task-prerequisites.t │ │ ├── 53-task-prerequisites │ │ │ └── flow.cylc │ │ ├── 55-stalled.t │ │ ├── 56-db-saves-type.t │ │ ├── 57-ghost-job.t │ │ ├── 57-ghost-job │ │ │ ├── db.sqlite3 │ │ │ └── flow.cylc │ │ ├── 58-removed-task.t │ │ ├── 58-removed-task │ │ │ └── flow.cylc │ │ ├── 58-waiting-manual-triggered.t │ │ ├── 58-waiting-manual-triggered │ │ │ └── flow.cylc │ │ ├── 59-retart-timeout.t │ │ ├── 59-retart-timeout │ │ │ └── flow.cylc │ │ ├── bad-job-host │ │ │ └── flow.cylc │ │ ├── bad-state │ │ │ └── flow.cylc │ │ ├── bin │ │ │ ├── ctb-select-task-states │ │ │ └── shutdown_this_workflow_hook │ │ ├── broadcast │ │ │ ├── bin │ │ │ │ └── ctb-select-task-states │ │ │ └── flow.cylc │ │ ├── deleted-logs │ │ │ └── flow.cylc │ │ ├── failed │ │ │ ├── bin │ │ │ │ └── ctb-select-task-states │ │ │ └── flow.cylc │ │ ├── lib │ │ │ └── flow-runtime-restart.cylc │ │ ├── pre-init-2 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── reload │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── submit-failed │ │ │ ├── bin │ │ │ │ └── ctb-select-task-states │ │ │ └── flow.cylc │ │ ├── succeeded │ │ │ ├── bin │ │ │ │ └── ctb-select-task-states │ │ │ └── flow.cylc │ │ ├── test_header │ │ └── waiting │ │ │ ├── bin │ │ │ └── ctb-select-task-states │ │ │ └── flow.cylc │ ├── retries │ │ ├── 00-execution-retry.t │ │ ├── 01-submission-retry.t │ │ ├── 02-xtriggers.t │ │ ├── 02-xtriggers │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-upgrade │ │ │ └── flow.cylc │ │ ├── execution │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── submission │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── rnd │ │ ├── 00-run-funtional-tests.t │ │ ├── 01-signals.t │ │ ├── 02-lib-python-in-job.t │ │ ├── 02-lib-python-in-job │ │ │ ├── flow.cylc │ │ │ └── lib │ │ │ │ └── python │ │ │ │ └── pub │ │ │ │ └── beer.py │ │ ├── 03-check-versions.t │ │ ├── 04-conditions.t │ │ ├── 05-main-loop.t │ │ ├── 06-unicode.t │ │ ├── 07-completion-server.t │ │ ├── 08-cylc-list.t │ │ └── test_header │ ├── run_modes │ │ ├── 01-dummy.t │ │ ├── 01-dummy │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-dummy-message-outputs.t │ │ ├── 02-dummy-message-outputs │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-simulation.t │ │ ├── 03-simulation │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-simulation-runtime.t │ │ ├── 04-simulation-runtime │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-sim-trigger.t │ │ ├── 05-sim-trigger │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 06-run-mode-overrides.t │ │ ├── 06-run-mode-overrides │ │ │ └── flow.cylc │ │ └── test_header │ ├── runahead │ │ ├── 00-runahead.t │ │ ├── 01-check-default-simple.t │ │ ├── 02-check-default-complex.t │ │ ├── 03-check-default-future.t │ │ ├── 04-no-final-cycle.t │ │ ├── 05-check-default-future-2.t │ │ ├── 06-release-update.t │ │ ├── 07-time-limit.t │ │ ├── default-complex │ │ │ └── flow.cylc │ │ ├── default-future │ │ │ └── flow.cylc │ │ ├── default-simple │ │ │ └── flow.cylc │ │ ├── no_final │ │ │ └── flow.cylc │ │ ├── release-update │ │ │ └── flow.cylc │ │ ├── runahead │ │ │ └── flow.cylc │ │ ├── test_header │ │ └── time-limit │ │ │ └── flow.cylc │ ├── shutdown │ │ ├── 00-cycle.t │ │ ├── 00-cycle │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-task.t │ │ ├── 01-task │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-no-dir.t │ │ ├── 02-no-dir │ │ │ └── flow.cylc │ │ ├── 03-bad-cycle.t │ │ ├── 03-bad-cycle │ │ │ └── flow.cylc │ │ ├── 04-kill.t │ │ ├── 04-kill │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-auto.t │ │ ├── 05-auto │ │ │ └── flow.cylc │ │ ├── 06-kill-fail │ │ │ └── flow.cylc │ │ ├── 07-task-fail.t │ │ ├── 07-task-fail │ │ │ └── flow.cylc │ │ ├── 08-now1.t │ │ ├── 08-now1 │ │ │ └── flow.cylc │ │ ├── 09-now2.t │ │ ├── 09-now2 │ │ │ └── flow.cylc │ │ ├── 12-bad-port-file-check.t │ │ ├── 12-bad-port-file-check │ │ │ └── flow.cylc │ │ ├── 13-no-port-file-check.t │ │ ├── 13-no-port-file-check │ │ │ └── flow.cylc │ │ ├── 14-no-dir-check.t │ │ ├── 14-no-dir-check │ │ │ └── flow.cylc │ │ ├── 15-bad-port-file-check-globalcfg │ │ ├── 15-bad-port-file-check-globalcfg.t │ │ ├── 16-no-port-file-check-globalcfg │ │ ├── 16-no-port-file-check-globalcfg.t │ │ ├── 17-no-dir-check-globalcfg │ │ ├── 17-no-dir-check-globalcfg.t │ │ ├── 18-client-on-dead-workflow.t │ │ ├── 19-log-reference.t │ │ ├── 20-stop-after-runN-play.t │ │ ├── 21-stop-kill.t │ │ ├── 22-stop-now.t │ │ └── test_header │ ├── spawn-on-demand │ │ ├── 00-no-reflow.t │ │ ├── 00-no-reflow │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-reflow.t │ │ ├── 01-reflow │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-merge.t │ │ ├── 02-merge │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-conditional.t │ │ ├── 03-conditional │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-branch.t │ │ ├── 04-branch │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-stop-flow.t │ │ ├── 05-stop-flow │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 06-stop-flow-2.t │ │ ├── 06-stop-flow-2 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 07-abs-triggers.t │ │ ├── 07-abs-triggers │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 08-lost-parents.t │ │ ├── 08-lost-parents │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 09-set-outputs.t │ │ ├── 09-set-outputs │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 10-retrigger.t │ │ ├── 10-retrigger │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 11-abs-suicide.t │ │ ├── 11-abs-suicide │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 11-hold-not-spawned.t │ │ ├── 11-hold-not-spawned │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 12-set-outputs-cont-flow.t │ │ ├── 12-set-outputs-cont-flow │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 13-trigger-runahead.t │ │ ├── 13-trigger-runahead │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 14-trigger-flow-blocker.t │ │ ├── 14-trigger-flow-blocker │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 15-reflow-incomplete-outputs.t │ │ ├── 15-reflow-incomplete-outputs │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 15-stop-flow-3.t │ │ ├── 15-stop-flow-3 │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 16-c7backcompat-self-suicide.t │ │ ├── 16-c7backcompat-self-suicide │ │ │ ├── reference.log │ │ │ └── suite.rc │ │ ├── 16-parents-yes-no.t │ │ ├── 16-parents-yes-no │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 17-c7backcompat-self-suicide-cycling.t │ │ ├── 17-c7backcompat-self-suicide-cycling │ │ │ ├── reference.log │ │ │ └── suite.rc │ │ ├── 18-submitted.t │ │ ├── 18-submitted │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 19-submitted-compat.t │ │ └── test_header │ ├── special │ │ ├── 00-sequential.t │ │ ├── 00-sequential │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 07-clock-triggered-360.t │ │ ├── 08-clock-trigger-retry.t │ │ ├── clock-360 │ │ │ └── flow.cylc │ │ └── test_header │ ├── startup │ │ ├── 00-state-summary.t │ │ ├── 00-state-summary │ │ │ └── flow.cylc │ │ ├── 01-log-flow-config.t │ │ └── test_header │ ├── task-name │ │ ├── 00-basic.t │ │ ├── 00-basic │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── test_functions │ │ ├── 00-grep_fail.t │ │ └── test_header │ ├── triggering │ │ ├── 00-recovery.t │ │ ├── 00-recovery │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 00a-recovery.t │ │ ├── 00a-recovery │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-or-conditional.t │ │ ├── 01-or-conditional │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-fam-start-all.t │ │ ├── 02-fam-start-all │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 03-fam-succeed-all.t │ │ ├── 03-fam-succeed-all │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 04-fam-fail-all.t │ │ ├── 04-fam-fail-all │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 05-fam-finish-all.t │ │ ├── 05-fam-finish-all │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 06-fam-succeed-any.t │ │ ├── 06-fam-succeed-any │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 07-fam-fail-any.t │ │ ├── 07-fam-fail-any │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 08-fam-finish-any.t │ │ ├── 08-fam-finish-any │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 10-finish.t │ │ ├── 10-finish │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 11-start.t │ │ ├── 11-start │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 12-succeed.t │ │ ├── 12-succeed │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 13-submit.t │ │ ├── 13-submit │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 14-submit-fail.t │ │ ├── 14-submit-fail │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 16-fam-expansion.t │ │ ├── 17-suicide-multi.t │ │ ├── 17-suicide-multi │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 19-and-suicide.t │ │ ├── 19-and-suicide │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 20-and-outputs-suicide.t │ │ ├── 20-and-outputs-suicide │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 21-expire.t │ │ ├── 21-expire │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── fam-expansion │ │ │ └── flow.cylc │ │ └── test_header │ ├── validate │ │ ├── 00-multi.t │ │ ├── 00-multi │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 01-periodical.t │ │ ├── 01-periodical │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── 02-scripting-quotes.t │ │ ├── 02-scripting-quotes │ │ │ └── flow.cylc │ │ ├── 03-incomplete-quotes.t │ │ ├── 03-incomplete-quotes │ │ │ └── flow.cylc │ │ ├── 05-implicit-typo.t │ │ ├── 06-implicit-missing.t │ │ ├── 07-null-parentage.t │ │ ├── 08-whitespace.t │ │ ├── 08-whitespace │ │ │ ├── flow.cylc │ │ │ └── inc.cylc │ │ ├── 09-include-missing.t │ │ ├── 10-bad-recurrence.t │ │ ├── 13-fail-old-syntax-2.t │ │ ├── 13-fail-old-syntax-2 │ │ │ └── flow.cylc │ │ ├── 14-fail-old-syntax-3.t │ │ ├── 14-fail-old-syntax-3 │ │ │ └── flow.cylc │ │ ├── 15-fail-old-syntax-4.t │ │ ├── 15-fail-old-syntax-4 │ │ │ └── flow.cylc │ │ ├── 16-fail-old-syntax-5.t │ │ ├── 16-fail-old-syntax-5 │ │ │ └── flow.cylc │ │ ├── 17-fail-old-syntax-6.t │ │ ├── 18-fail-no-scheduling.t │ │ ├── 18-fail-no-scheduling │ │ │ └── flow.cylc │ │ ├── 19-fail-no-dependencies.t │ │ ├── 19-fail-no-dependencies │ │ │ └── flow.cylc │ │ ├── 20-fail-no-graph.t │ │ ├── 20-fail-no-graph │ │ │ └── flow.cylc │ │ ├── 21-fail-no-graph-2.t │ │ ├── 22-fail-year-bounds.t │ │ ├── 22-fail-year-bounds │ │ │ └── flow.cylc │ │ ├── 23-fail-old-syntax-7.t │ │ ├── 23-fail-old-syntax-7 │ │ │ └── flow.cylc │ │ ├── 24-fail-initial-greater-final.t │ │ ├── 24-fail-initial-greater-final │ │ │ └── flow.cylc │ │ ├── 25-fail-constrained-initial.t │ │ ├── 25-fail-constrained-initial │ │ │ └── flow.cylc │ │ ├── 27-fail-constrained-final.t │ │ ├── 27-fail-constrained-final │ │ │ └── flow.cylc │ │ ├── 28-9999_rollover.t │ │ ├── 29-pass-constrained-initial.t │ │ ├── 29-pass-constrained-initial │ │ │ └── flow.cylc │ │ ├── 30-pass-constrained-final.t │ │ ├── 30-pass-constrained-final │ │ │ └── flow.cylc │ │ ├── 31-fail-not-integer.t │ │ ├── 37-special-implicit-task.t │ │ ├── 38-degenerate-point-format.t │ │ ├── 38-degenerate-point-format │ │ │ └── flow.cylc │ │ ├── 40-jinja2-template-syntax-error-main.t │ │ ├── 40-jinja2-template-syntax-error-main │ │ │ └── flow.cylc │ │ ├── 43-jinja2-template-error-main.t │ │ ├── 45-jinja2-type-error.t │ │ ├── 49-jinja2-undefined-error.t │ │ ├── 49-jinja2-undefined-error │ │ │ └── flow.cylc │ │ ├── 50-hyphen-fam.t │ │ ├── 52-null-timeout.t │ │ ├── 54-self-suicide.t │ │ ├── 55-hyphen-finish.t │ │ ├── 56-succeed-sub.t │ │ ├── 57-offset-no-offset.t │ │ ├── 58-icp-quoted-now.t │ │ ├── 61-include-missing-quote.t │ │ ├── 64-circular.t │ │ ├── 65-bad-task-event-handler-tmpl.t │ │ ├── 66-fail-consec-spaces.t │ │ ├── 67-relative-icp.t │ │ ├── 68-trailing_whitespace.t │ │ ├── 70-no-clock-int-cycle.t │ │ ├── 71-task-proxy-sequence-bounds-err.t │ │ ├── 73-xtrigger-names.t │ │ ├── 74-templatevar-types.t │ │ ├── 75-CYLC_TEMPLATE_VARS.t │ │ ├── 76-section-section-transpose.t │ │ ├── 9999_rollover │ │ │ └── flow.cylc │ │ └── test_header │ ├── workflow-host-self-id │ │ ├── 00-address.t │ │ ├── 00-address │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ └── test_header │ ├── workflow-state │ │ ├── 00-polling.t │ │ ├── 01-polling.t │ │ ├── 02-validate-blank-command-scripting.t │ │ ├── 02-validate-blank-command-scripting │ │ │ └── flow.cylc │ │ ├── 03-options.t │ │ ├── 05-output.t │ │ ├── 06-format.t │ │ ├── 06a-noformat.t │ │ ├── 07-message2.t │ │ ├── 07-message2 │ │ │ └── flow.cylc │ │ ├── 08-integer.t │ │ ├── 09-datetime.t │ │ ├── 10-backcompat.t │ │ ├── 11-multi.t │ │ ├── 11-multi │ │ │ ├── c7.sql │ │ │ ├── c8a.sql │ │ │ ├── c8b.sql │ │ │ ├── flow.cylc │ │ │ ├── reference.log │ │ │ └── upstream │ │ │ │ └── suite.rc │ │ ├── backcompat │ │ │ ├── schema-1.sql │ │ │ ├── schema-2.sql │ │ │ └── suite.rc │ │ ├── datetime │ │ │ └── flow.cylc │ │ ├── integer │ │ │ └── flow.cylc │ │ ├── options │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── output │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── polling │ │ │ ├── flow.cylc │ │ │ └── reference.log │ │ ├── test_header │ │ └── upstream │ │ │ └── flow.cylc │ └── xtriggers │ │ ├── 02-persistence.t │ │ ├── 02-persistence │ │ ├── faker_fail.py │ │ ├── faker_succ.py │ │ └── flow.cylc │ │ ├── 03-sequence.t │ │ ├── 04-respect-cylc-pythonpath.t │ │ ├── 04-respect-cylc-pythonpath │ │ ├── dir │ │ │ └── echo.py │ │ └── flow.cylc │ │ ├── 04-sequential.t │ │ ├── 04-suite_state.t │ │ └── test_header ├── i ├── integration │ ├── README.md │ ├── __init__.py │ ├── conftest.py │ ├── main_loop │ │ ├── __init__.py │ │ └── test_auto_restart.py │ ├── network │ │ ├── __init__.py │ │ ├── key_setup.py │ │ ├── test_client.py │ │ ├── test_graphql.py │ │ ├── test_publisher.py │ │ ├── test_replier.py │ │ ├── test_resolvers.py │ │ ├── test_scan.py │ │ ├── test_server.py │ │ └── test_zmq.py │ ├── reftests │ │ ├── test_cyclers.py │ │ ├── test_pre_initial.py │ │ └── test_triggering.py │ ├── run_modes │ │ ├── test_mode_overrides.py │ │ ├── test_nonlive.py │ │ ├── test_simulation.py │ │ └── test_skip.py │ ├── scripts │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_back_compat_flow_all.py │ │ ├── test_broadcast.py │ │ ├── test_cat_log.py │ │ ├── test_completion_server.py │ │ ├── test_dump.py │ │ ├── test_graph.py │ │ ├── test_kill.py │ │ ├── test_list.py │ │ ├── test_reinstall.py │ │ ├── test_set.py │ │ ├── test_show.py │ │ ├── test_validate_integration.py │ │ └── test_validate_reinstall.py │ ├── test_broadcast_mgr.py │ ├── test_compat_mode.py │ ├── test_config.py │ ├── test_data_store_mgr.py │ ├── test_dbstatecheck.py │ ├── test_examples.py │ ├── test_flow_assignment.py │ ├── test_force_trigger.py │ ├── test_get_old_tvars.py │ ├── test_id_cli.py │ ├── test_id_match.py │ ├── test_increment_graph_window.py │ ├── test_install.py │ ├── test_job_runner_mgr.py │ ├── test_mode_on_restart.py │ ├── test_optional_outputs.py │ ├── test_platforms.py │ ├── test_queues.py │ ├── test_reload.py │ ├── test_remove.py │ ├── test_scan_api.py │ ├── test_scheduler.py │ ├── test_sequential_xtriggers.py │ ├── test_stop_after_cycle_point.py │ ├── test_subprocctx.py │ ├── test_task_events_mgr.py │ ├── test_task_job_mgr.py │ ├── test_task_pool.py │ ├── test_task_remote_mgr.py │ ├── test_taskdef.py │ ├── test_template_variables_cli.py │ ├── test_workflow_db_mgr.py │ ├── test_workflow_events.py │ ├── test_workflow_files.py │ ├── test_xtrigger_mgr.py │ ├── tui │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── screenshots │ │ │ ├── test_auto_expansion.later-time.html │ │ │ ├── test_auto_expansion.on-load.html │ │ │ ├── test_errors.list-error.html │ │ │ ├── test_errors.open-error.html │ │ │ ├── test_external_editor.before-opening-editor.html │ │ │ ├── test_incompat_scheduler_version.on-load.html │ │ │ ├── test_job_logs.01-job.out.html │ │ │ ├── test_job_logs.02-job.out.html │ │ │ ├── test_navigation.cursor-at-bottom-of-screen.html │ │ │ ├── test_navigation.family-A-collapsed.html │ │ │ ├── test_navigation.on-load.html │ │ │ ├── test_navigation.workflow-expanded.html │ │ │ ├── test_offline_mutation.clean-command-error.html │ │ │ ├── test_offline_mutation.clean-mutation-selected.html │ │ │ ├── test_offline_mutation.stop-all-mutation-selected.html │ │ │ ├── test_online_mutation.command-failed-client-error.html │ │ │ ├── test_online_mutation.command-failed-workflow-stopped.html │ │ │ ├── test_online_mutation.command-failed.html │ │ │ ├── test_online_mutation.hold-mutation-selected.html │ │ │ ├── test_online_mutation.task-selected.html │ │ │ ├── test_restart_reconnect.1-workflow-running.html │ │ │ ├── test_restart_reconnect.2-workflow-stopped.html │ │ │ ├── test_restart_reconnect.3-workflow-restarted.html │ │ │ ├── test_scheduler_logs.log-file-selection.html │ │ │ ├── test_scheduler_logs.scheduler-log-file-bottom.html │ │ │ ├── test_scheduler_logs.scheduler-log-file.html │ │ │ ├── test_scheduler_logs.workflow-configuration-file.html │ │ │ ├── test_set_mutation.set-command-selected.html │ │ │ ├── test_set_mutation.task-state-updated.html │ │ │ ├── test_show.fail.html │ │ │ ├── test_show.success.html │ │ │ ├── test_states.cycle-context--waiting.html │ │ │ ├── test_states.on-load.html │ │ │ ├── test_states.task-context--succeeded+held.html │ │ │ ├── test_states.task-context--waiting+queued.html │ │ │ ├── test_states.task-context--waiting+runahead.html │ │ │ ├── test_states.workflow-context--paused.html │ │ │ ├── test_subscribe_unsubscribe.subscribed.html │ │ │ ├── test_subscribe_unsubscribe.unsubscribed.html │ │ │ ├── test_task_logs.latest-job.err.html │ │ │ ├── test_task_logs.latest-job.out.html │ │ │ ├── test_task_modifiers.task-context-menu.html │ │ │ ├── test_task_modifiers.task-modifiers.html │ │ │ ├── test_task_states.filter-not-waiting-or-expired.html │ │ │ ├── test_task_states.filter-not-waiting.html │ │ │ ├── test_task_states.filter-submitted.html │ │ │ ├── test_task_states.filter-waiting-or-expired.html │ │ │ ├── test_task_states.unfiltered.html │ │ │ ├── test_tui_basics.test-rakiura-enter.html │ │ │ ├── test_tui_basics.test-rakiura-help.html │ │ │ ├── test_tui_basics.test-rakiura.html │ │ │ ├── test_workflow_states.filter-active.html │ │ │ ├── test_workflow_states.filter-starts-with-t.html │ │ │ ├── test_workflow_states.filter-stopped-or-paused.html │ │ │ ├── test_workflow_states.filter-stopped.html │ │ │ └── test_workflow_states.unfiltered.html │ │ ├── test_app.py │ │ ├── test_logs.py │ │ ├── test_mutations.py │ │ ├── test_show.py │ │ └── test_updater.py │ ├── utils │ │ ├── __init__.py │ │ ├── entry_points.py │ │ ├── flow_tools.py │ │ ├── flow_writer.py │ │ ├── test_flow_tools.py │ │ ├── test_flow_writer.py │ │ └── test_utils.py │ └── validate │ │ ├── test_jinja2.py │ │ └── test_outputs.py ├── k ├── u └── unit │ ├── README.md │ ├── __init__.py │ ├── cfgspec │ ├── test_globalcfg.py │ └── test_workflow.py │ ├── conftest.py │ ├── cycling │ ├── __init__.py │ ├── test_cycling.py │ ├── test_integer.py │ ├── test_iso8601.py │ └── test_util.py │ ├── filetree.py │ ├── jinja2_filters │ └── test_duration_as.py │ ├── job_runner_handlers │ ├── test_loadleveler.py │ ├── test_lsf.py │ ├── test_moab.py │ ├── test_pbs.py │ ├── test_slurm.py │ └── test_slurm_packjob.py │ ├── main_loop │ ├── test_auto_restart.py │ ├── test_health_check.py │ ├── test_log_data_store.py │ ├── test_log_db.py │ ├── test_log_main_loop.py │ ├── test_log_memory.py │ ├── test_log_tracemalloc.py │ └── test_main_loop.py │ ├── network │ ├── test__init__.py │ ├── test_graphql.py │ ├── test_multi.py │ ├── test_publisher.py │ ├── test_scan.py │ ├── test_schema.py │ └── test_subscriber.py │ ├── option_parsers.py │ ├── parsec │ ├── conftest.py │ ├── test_config.py │ ├── test_config_node.py │ ├── test_dict_tree.py │ ├── test_fileparse.py │ ├── test_fileparse_templating_clash.py │ ├── test_include.py │ ├── test_jinja2support.py │ ├── test_ordered_dict.py │ ├── test_parsec.py │ ├── test_types.py │ ├── test_upgrade.py │ ├── test_util.py │ └── test_validate.py │ ├── plugins │ └── test_pre_configure.py │ ├── post_install │ └── test_log_vc_info.py │ ├── run_modes │ ├── __init__.py │ ├── test_dummy.py │ ├── test_run_modes.py │ ├── test_simulation_units.py │ └── test_skip_units.py │ ├── scripts │ ├── __init__.py │ ├── test_cat_log.py │ ├── test_check_versions.py │ ├── test_clean.py │ ├── test_completion_server.py │ ├── test_config.py │ ├── test_cylc.py │ ├── test_graph.py │ ├── test_hold.py │ ├── test_install.py │ ├── test_lint.py │ ├── test_lint_checkers.py │ ├── test_reinstall.py │ ├── test_release.py │ ├── test_scan.py │ ├── test_stop.py │ ├── test_validate.py │ └── test_validate_reinstall_units.py │ ├── test_async_util.py │ ├── test_c3mro.py │ ├── test_clean.py │ ├── test_command_validation.py │ ├── test_config.py │ ├── test_config_upgrader.py │ ├── test_context_node.py │ ├── test_cylc_subproc.py │ ├── test_data_store_mgr.py │ ├── test_db_compat.py │ ├── test_dbstatecheck.py │ ├── test_exceptions.py │ ├── test_flow_mgr.py │ ├── test_graph_parser.py │ ├── test_host_select.py │ ├── test_host_select_remote.py │ ├── test_hostuserutil.py │ ├── test_id.py │ ├── test_id_cli.py │ ├── test_id_match.py │ ├── test_indep_task_queues.py │ ├── test_install.py │ ├── test_job_file.py │ ├── test_job_runner_mgr.py │ ├── test_links.py │ ├── test_loggingutil.py │ ├── test_option_parsers.py │ ├── test_param_expand.py │ ├── test_pathutil.py │ ├── test_pbs_multi_cluster.py │ ├── test_pipe_poller.py │ ├── test_platforms.py │ ├── test_platforms_get_host.py │ ├── test_platforms_get_platform.py │ ├── test_prerequisite.py │ ├── test_psutil.py │ ├── test_remote.py │ ├── test_resources.py │ ├── test_rundb.py │ ├── test_scheduler.py │ ├── test_scheduler_cli.py │ ├── test_subprocpool.py │ ├── test_syntax_generator.py │ ├── test_task_events_mgr.py │ ├── test_task_id.py │ ├── test_task_message.py │ ├── test_task_outputs.py │ ├── test_task_pool.py │ ├── test_task_proxy.py │ ├── test_task_remote_cmd.py │ ├── test_task_remote_mgr.py │ ├── test_task_state.py │ ├── test_task_state_prop.py │ ├── test_task_trigger.py │ ├── test_taskdef.py │ ├── test_templatevars.py │ ├── test_terminal.py │ ├── test_time_parser.py │ ├── test_timer.py │ ├── test_util.py │ ├── test_wallclock.py │ ├── test_workflow_db_mgr.py │ ├── test_workflow_events.py │ ├── test_workflow_files.py │ ├── test_workflow_status.py │ ├── test_xtrigger_mgr.py │ ├── tui │ ├── __init__.py │ ├── test_data.py │ ├── test_overlay.py │ └── test_util.py │ └── xtriggers │ ├── __init__.py │ ├── test_echo.py │ ├── test_wall_clock.py │ ├── test_workflow_state.py │ └── test_xrandom.py └── tox.ini /.bandit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.bandit -------------------------------------------------------------------------------- /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/bin/mail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.github/bin/mail -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/1_create_release_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.github/workflows/1_create_release_pr.yml -------------------------------------------------------------------------------- /.github/workflows/bash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.github/workflows/bash.yml -------------------------------------------------------------------------------- /.github/workflows/branch_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.github/workflows/branch_sync.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/shortlog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.github/workflows/shortlog.yml -------------------------------------------------------------------------------- /.github/workflows/test_conda-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.github/workflows/test_conda-build.yml -------------------------------------------------------------------------------- /.github/workflows/test_fast.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.github/workflows/test_fast.yml -------------------------------------------------------------------------------- /.github/workflows/test_functional.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.github/workflows/test_functional.yml -------------------------------------------------------------------------------- /.github/workflows/update_copyright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.github/workflows/update_copyright.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.mailmap -------------------------------------------------------------------------------- /.wci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/.wci.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/INSTALL.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/SECURITY.md -------------------------------------------------------------------------------- /changes.d/6719.fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/changes.d/6719.fix.md -------------------------------------------------------------------------------- /changes.d/7042.feat.md: -------------------------------------------------------------------------------- 1 | Ctrl+C during interactive prompts is now handled more gracefully. 2 | -------------------------------------------------------------------------------- /changes.d/7052.feat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/changes.d/7052.feat.md -------------------------------------------------------------------------------- /changes.d/7100.fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/changes.d/7100.fix.md -------------------------------------------------------------------------------- /changes.d/7108.fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/changes.d/7108.fix.md -------------------------------------------------------------------------------- /changes.d/changelog-template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/changes.d/changelog-template.jinja -------------------------------------------------------------------------------- /conda-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/conda-environment.yml -------------------------------------------------------------------------------- /cylc/flow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/__init__.py -------------------------------------------------------------------------------- /cylc/flow/async_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/async_util.py -------------------------------------------------------------------------------- /cylc/flow/broadcast_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/broadcast_mgr.py -------------------------------------------------------------------------------- /cylc/flow/broadcast_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/broadcast_report.py -------------------------------------------------------------------------------- /cylc/flow/c3mro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/c3mro.py -------------------------------------------------------------------------------- /cylc/flow/cfgspec/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/cfgspec/README -------------------------------------------------------------------------------- /cylc/flow/cfgspec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/cfgspec/__init__.py -------------------------------------------------------------------------------- /cylc/flow/cfgspec/glbl_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/cfgspec/glbl_cfg.py -------------------------------------------------------------------------------- /cylc/flow/cfgspec/globalcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/cfgspec/globalcfg.py -------------------------------------------------------------------------------- /cylc/flow/cfgspec/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/cfgspec/workflow.py -------------------------------------------------------------------------------- /cylc/flow/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/clean.py -------------------------------------------------------------------------------- /cylc/flow/command_polling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/command_polling.py -------------------------------------------------------------------------------- /cylc/flow/command_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/command_validation.py -------------------------------------------------------------------------------- /cylc/flow/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/commands.py -------------------------------------------------------------------------------- /cylc/flow/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/config.py -------------------------------------------------------------------------------- /cylc/flow/context_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/context_node.py -------------------------------------------------------------------------------- /cylc/flow/cycling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/cycling/__init__.py -------------------------------------------------------------------------------- /cylc/flow/cycling/integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/cycling/integer.py -------------------------------------------------------------------------------- /cylc/flow/cycling/iso8601.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/cycling/iso8601.py -------------------------------------------------------------------------------- /cylc/flow/cycling/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/cycling/loader.py -------------------------------------------------------------------------------- /cylc/flow/cycling/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/cycling/util.py -------------------------------------------------------------------------------- /cylc/flow/cylc_subproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/cylc_subproc.py -------------------------------------------------------------------------------- /cylc/flow/daemonize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/daemonize.py -------------------------------------------------------------------------------- /cylc/flow/data_messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/data_messages.proto -------------------------------------------------------------------------------- /cylc/flow/data_messages_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/data_messages_pb2.py -------------------------------------------------------------------------------- /cylc/flow/data_messages_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/data_messages_pb2.pyi -------------------------------------------------------------------------------- /cylc/flow/data_store_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/data_store_mgr.py -------------------------------------------------------------------------------- /cylc/flow/dbstatecheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/dbstatecheck.py -------------------------------------------------------------------------------- /cylc/flow/etc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/etc/README.md -------------------------------------------------------------------------------- /cylc/flow/etc/cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/etc/cylc -------------------------------------------------------------------------------- /cylc/flow/etc/cylc-completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/etc/cylc-completion.bash -------------------------------------------------------------------------------- /cylc/flow/etc/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/etc/examples/README.md -------------------------------------------------------------------------------- /cylc/flow/etc/examples/expiry/.validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/etc/examples/expiry/.validate -------------------------------------------------------------------------------- /cylc/flow/etc/examples/expiry/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/etc/examples/expiry/index.rst -------------------------------------------------------------------------------- /cylc/flow/etc/job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/etc/job.sh -------------------------------------------------------------------------------- /cylc/flow/etc/syntax/cylc-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/etc/syntax/cylc-mode.el -------------------------------------------------------------------------------- /cylc/flow/etc/syntax/cylc.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/etc/syntax/cylc.lang -------------------------------------------------------------------------------- /cylc/flow/etc/syntax/cylc.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/etc/syntax/cylc.nanorc -------------------------------------------------------------------------------- /cylc/flow/etc/syntax/cylc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/etc/syntax/cylc.xml -------------------------------------------------------------------------------- /cylc/flow/etc/tutorial/consolidation-tutorial/bin: -------------------------------------------------------------------------------- 1 | ../cylc-forecasting-workflow/bin -------------------------------------------------------------------------------- /cylc/flow/etc/tutorial/consolidation-tutorial/etc/met-office-sites.dat: -------------------------------------------------------------------------------- 1 | ../../cylc-forecasting-workflow/etc/met-office-sites.dat -------------------------------------------------------------------------------- /cylc/flow/etc/tutorial/consolidation-tutorial/etc/python-job.settings: -------------------------------------------------------------------------------- 1 | ../../cylc-forecasting-workflow/etc/python-job.settings -------------------------------------------------------------------------------- /cylc/flow/etc/tutorial/consolidation-tutorial/lib: -------------------------------------------------------------------------------- 1 | ../cylc-forecasting-workflow/lib -------------------------------------------------------------------------------- /cylc/flow/etc/tutorial/forecast-script/forecast: -------------------------------------------------------------------------------- 1 | ../cylc-forecasting-workflow/bin/forecast -------------------------------------------------------------------------------- /cylc/flow/etc/tutorial/forecast-script/util.py: -------------------------------------------------------------------------------- 1 | ../cylc-forecasting-workflow/lib/python/util.py -------------------------------------------------------------------------------- /cylc/flow/etc/tutorial/map-template/map-template.html: -------------------------------------------------------------------------------- 1 | ../cylc-forecasting-workflow/lib/template/map.html -------------------------------------------------------------------------------- /cylc/flow/etc/tutorial/runtime-introduction/etc/python-job.settings: -------------------------------------------------------------------------------- 1 | ../../cylc-forecasting-workflow/etc/python-job.settings -------------------------------------------------------------------------------- /cylc/flow/etc/tutorial/runtime-tutorial/bin: -------------------------------------------------------------------------------- 1 | ../cylc-forecasting-workflow/bin -------------------------------------------------------------------------------- /cylc/flow/etc/tutorial/runtime-tutorial/etc/met-office-sites.dat: -------------------------------------------------------------------------------- 1 | ../../cylc-forecasting-workflow/etc/met-office-sites.dat -------------------------------------------------------------------------------- /cylc/flow/etc/tutorial/runtime-tutorial/etc/python-job.settings: -------------------------------------------------------------------------------- 1 | ../../cylc-forecasting-workflow/etc/python-job.settings -------------------------------------------------------------------------------- /cylc/flow/etc/tutorial/runtime-tutorial/lib: -------------------------------------------------------------------------------- 1 | ../cylc-forecasting-workflow/lib -------------------------------------------------------------------------------- /cylc/flow/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/exceptions.py -------------------------------------------------------------------------------- /cylc/flow/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/flags.py -------------------------------------------------------------------------------- /cylc/flow/flow_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/flow_mgr.py -------------------------------------------------------------------------------- /cylc/flow/graph_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/graph_parser.py -------------------------------------------------------------------------------- /cylc/flow/graphnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/graphnode.py -------------------------------------------------------------------------------- /cylc/flow/host_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/host_select.py -------------------------------------------------------------------------------- /cylc/flow/hostuserutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/hostuserutil.py -------------------------------------------------------------------------------- /cylc/flow/id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/id.py -------------------------------------------------------------------------------- /cylc/flow/id_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/id_cli.py -------------------------------------------------------------------------------- /cylc/flow/id_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/id_match.py -------------------------------------------------------------------------------- /cylc/flow/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/install.py -------------------------------------------------------------------------------- /cylc/flow/install_plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/install_plugins/__init__.py -------------------------------------------------------------------------------- /cylc/flow/install_plugins/log_vc_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/install_plugins/log_vc_info.py -------------------------------------------------------------------------------- /cylc/flow/jinja/filters/duration_as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/jinja/filters/duration_as.py -------------------------------------------------------------------------------- /cylc/flow/jinja/filters/pad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/jinja/filters/pad.py -------------------------------------------------------------------------------- /cylc/flow/jinja/filters/strftime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/jinja/filters/strftime.py -------------------------------------------------------------------------------- /cylc/flow/job_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/job_file.py -------------------------------------------------------------------------------- /cylc/flow/job_runner_handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/job_runner_handlers/__init__.py -------------------------------------------------------------------------------- /cylc/flow/job_runner_handlers/at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/job_runner_handlers/at.py -------------------------------------------------------------------------------- /cylc/flow/job_runner_handlers/lsf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/job_runner_handlers/lsf.py -------------------------------------------------------------------------------- /cylc/flow/job_runner_handlers/moab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/job_runner_handlers/moab.py -------------------------------------------------------------------------------- /cylc/flow/job_runner_handlers/pbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/job_runner_handlers/pbs.py -------------------------------------------------------------------------------- /cylc/flow/job_runner_handlers/sge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/job_runner_handlers/sge.py -------------------------------------------------------------------------------- /cylc/flow/job_runner_handlers/slurm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/job_runner_handlers/slurm.py -------------------------------------------------------------------------------- /cylc/flow/job_runner_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/job_runner_mgr.py -------------------------------------------------------------------------------- /cylc/flow/listify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/listify.py -------------------------------------------------------------------------------- /cylc/flow/log_diagnosis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/log_diagnosis.py -------------------------------------------------------------------------------- /cylc/flow/log_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/log_level.py -------------------------------------------------------------------------------- /cylc/flow/loggingutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/loggingutil.py -------------------------------------------------------------------------------- /cylc/flow/main_loop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/main_loop/__init__.py -------------------------------------------------------------------------------- /cylc/flow/main_loop/auto_restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/main_loop/auto_restart.py -------------------------------------------------------------------------------- /cylc/flow/main_loop/health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/main_loop/health_check.py -------------------------------------------------------------------------------- /cylc/flow/main_loop/log_data_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/main_loop/log_data_store.py -------------------------------------------------------------------------------- /cylc/flow/main_loop/log_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/main_loop/log_db.py -------------------------------------------------------------------------------- /cylc/flow/main_loop/log_main_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/main_loop/log_main_loop.py -------------------------------------------------------------------------------- /cylc/flow/main_loop/log_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/main_loop/log_memory.py -------------------------------------------------------------------------------- /cylc/flow/main_loop/log_tracemalloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/main_loop/log_tracemalloc.py -------------------------------------------------------------------------------- /cylc/flow/main_loop/reset_bad_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/main_loop/reset_bad_hosts.py -------------------------------------------------------------------------------- /cylc/flow/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/__init__.py -------------------------------------------------------------------------------- /cylc/flow/network/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/authentication.py -------------------------------------------------------------------------------- /cylc/flow/network/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/client.py -------------------------------------------------------------------------------- /cylc/flow/network/client_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/client_factory.py -------------------------------------------------------------------------------- /cylc/flow/network/graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/graphql.py -------------------------------------------------------------------------------- /cylc/flow/network/graphql_subscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/graphql_subscribe.py -------------------------------------------------------------------------------- /cylc/flow/network/log_stream_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/log_stream_handler.py -------------------------------------------------------------------------------- /cylc/flow/network/multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/multi.py -------------------------------------------------------------------------------- /cylc/flow/network/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/publisher.py -------------------------------------------------------------------------------- /cylc/flow/network/replier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/replier.py -------------------------------------------------------------------------------- /cylc/flow/network/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/resolvers.py -------------------------------------------------------------------------------- /cylc/flow/network/scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/scan.py -------------------------------------------------------------------------------- /cylc/flow/network/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/schema.py -------------------------------------------------------------------------------- /cylc/flow/network/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/server.py -------------------------------------------------------------------------------- /cylc/flow/network/ssh_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/ssh_client.py -------------------------------------------------------------------------------- /cylc/flow/network/subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/network/subscriber.py -------------------------------------------------------------------------------- /cylc/flow/option_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/option_parsers.py -------------------------------------------------------------------------------- /cylc/flow/param_expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/param_expand.py -------------------------------------------------------------------------------- /cylc/flow/parsec/OrderedDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/parsec/OrderedDict.py -------------------------------------------------------------------------------- /cylc/flow/parsec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/parsec/README.md -------------------------------------------------------------------------------- /cylc/flow/parsec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/parsec/__init__.py -------------------------------------------------------------------------------- /cylc/flow/parsec/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/parsec/config.py -------------------------------------------------------------------------------- /cylc/flow/parsec/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/parsec/exceptions.py -------------------------------------------------------------------------------- /cylc/flow/parsec/fileparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/parsec/fileparse.py -------------------------------------------------------------------------------- /cylc/flow/parsec/include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/parsec/include.py -------------------------------------------------------------------------------- /cylc/flow/parsec/jinja2support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/parsec/jinja2support.py -------------------------------------------------------------------------------- /cylc/flow/parsec/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/parsec/upgrade.py -------------------------------------------------------------------------------- /cylc/flow/parsec/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/parsec/util.py -------------------------------------------------------------------------------- /cylc/flow/parsec/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/parsec/validate.py -------------------------------------------------------------------------------- /cylc/flow/pathutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/pathutil.py -------------------------------------------------------------------------------- /cylc/flow/pipe_poller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/pipe_poller.py -------------------------------------------------------------------------------- /cylc/flow/platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/platforms.py -------------------------------------------------------------------------------- /cylc/flow/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/plugins.py -------------------------------------------------------------------------------- /cylc/flow/prerequisite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/prerequisite.py -------------------------------------------------------------------------------- /cylc/flow/print_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/print_tree.py -------------------------------------------------------------------------------- /cylc/flow/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/profiler.py -------------------------------------------------------------------------------- /cylc/flow/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cylc/flow/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/remote.py -------------------------------------------------------------------------------- /cylc/flow/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/resources.py -------------------------------------------------------------------------------- /cylc/flow/run_modes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/run_modes/__init__.py -------------------------------------------------------------------------------- /cylc/flow/run_modes/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/run_modes/dummy.py -------------------------------------------------------------------------------- /cylc/flow/run_modes/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/run_modes/simulation.py -------------------------------------------------------------------------------- /cylc/flow/run_modes/skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/run_modes/skip.py -------------------------------------------------------------------------------- /cylc/flow/rundb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/rundb.py -------------------------------------------------------------------------------- /cylc/flow/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scheduler.py -------------------------------------------------------------------------------- /cylc/flow/scheduler_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scheduler_cli.py -------------------------------------------------------------------------------- /cylc/flow/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/__init__.py -------------------------------------------------------------------------------- /cylc/flow/scripts/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/broadcast.py -------------------------------------------------------------------------------- /cylc/flow/scripts/cat_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/cat_log.py -------------------------------------------------------------------------------- /cylc/flow/scripts/check_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/check_versions.py -------------------------------------------------------------------------------- /cylc/flow/scripts/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/clean.py -------------------------------------------------------------------------------- /cylc/flow/scripts/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/client.py -------------------------------------------------------------------------------- /cylc/flow/scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/common.py -------------------------------------------------------------------------------- /cylc/flow/scripts/completion_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/completion_server.py -------------------------------------------------------------------------------- /cylc/flow/scripts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/config.py -------------------------------------------------------------------------------- /cylc/flow/scripts/cycle_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/cycle_point.py -------------------------------------------------------------------------------- /cylc/flow/scripts/cylc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/cylc.py -------------------------------------------------------------------------------- /cylc/flow/scripts/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/diff.py -------------------------------------------------------------------------------- /cylc/flow/scripts/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/dump.py -------------------------------------------------------------------------------- /cylc/flow/scripts/ext_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/ext_trigger.py -------------------------------------------------------------------------------- /cylc/flow/scripts/function_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/function_run.py -------------------------------------------------------------------------------- /cylc/flow/scripts/get_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/get_resources.py -------------------------------------------------------------------------------- /cylc/flow/scripts/get_workflow_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/get_workflow_contact.py -------------------------------------------------------------------------------- /cylc/flow/scripts/get_workflow_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/get_workflow_version.py -------------------------------------------------------------------------------- /cylc/flow/scripts/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/graph.py -------------------------------------------------------------------------------- /cylc/flow/scripts/hold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/hold.py -------------------------------------------------------------------------------- /cylc/flow/scripts/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/install.py -------------------------------------------------------------------------------- /cylc/flow/scripts/jobs_kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/jobs_kill.py -------------------------------------------------------------------------------- /cylc/flow/scripts/jobs_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/jobs_poll.py -------------------------------------------------------------------------------- /cylc/flow/scripts/jobs_submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/jobs_submit.py -------------------------------------------------------------------------------- /cylc/flow/scripts/kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/kill.py -------------------------------------------------------------------------------- /cylc/flow/scripts/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/lint.py -------------------------------------------------------------------------------- /cylc/flow/scripts/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/list.py -------------------------------------------------------------------------------- /cylc/flow/scripts/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/message.py -------------------------------------------------------------------------------- /cylc/flow/scripts/pause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/pause.py -------------------------------------------------------------------------------- /cylc/flow/scripts/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/ping.py -------------------------------------------------------------------------------- /cylc/flow/scripts/play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/play.py -------------------------------------------------------------------------------- /cylc/flow/scripts/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/poll.py -------------------------------------------------------------------------------- /cylc/flow/scripts/psutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/psutil.py -------------------------------------------------------------------------------- /cylc/flow/scripts/reinstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/reinstall.py -------------------------------------------------------------------------------- /cylc/flow/scripts/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/release.py -------------------------------------------------------------------------------- /cylc/flow/scripts/reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/reload.py -------------------------------------------------------------------------------- /cylc/flow/scripts/remote_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/remote_init.py -------------------------------------------------------------------------------- /cylc/flow/scripts/remote_tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/remote_tidy.py -------------------------------------------------------------------------------- /cylc/flow/scripts/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/remove.py -------------------------------------------------------------------------------- /cylc/flow/scripts/report_timings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/report_timings.py -------------------------------------------------------------------------------- /cylc/flow/scripts/scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/scan.py -------------------------------------------------------------------------------- /cylc/flow/scripts/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/set.py -------------------------------------------------------------------------------- /cylc/flow/scripts/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/show.py -------------------------------------------------------------------------------- /cylc/flow/scripts/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/stop.py -------------------------------------------------------------------------------- /cylc/flow/scripts/subscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/subscribe.py -------------------------------------------------------------------------------- /cylc/flow/scripts/trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/trigger.py -------------------------------------------------------------------------------- /cylc/flow/scripts/tui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/tui.py -------------------------------------------------------------------------------- /cylc/flow/scripts/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/validate.py -------------------------------------------------------------------------------- /cylc/flow/scripts/validate_reinstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/validate_reinstall.py -------------------------------------------------------------------------------- /cylc/flow/scripts/verbosity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/verbosity.py -------------------------------------------------------------------------------- /cylc/flow/scripts/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/view.py -------------------------------------------------------------------------------- /cylc/flow/scripts/workflow_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/scripts/workflow_state.py -------------------------------------------------------------------------------- /cylc/flow/subprocctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/subprocctx.py -------------------------------------------------------------------------------- /cylc/flow/subprocpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/subprocpool.py -------------------------------------------------------------------------------- /cylc/flow/task_action_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_action_timer.py -------------------------------------------------------------------------------- /cylc/flow/task_events_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_events_mgr.py -------------------------------------------------------------------------------- /cylc/flow/task_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_id.py -------------------------------------------------------------------------------- /cylc/flow/task_job_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_job_logs.py -------------------------------------------------------------------------------- /cylc/flow/task_job_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_job_mgr.py -------------------------------------------------------------------------------- /cylc/flow/task_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_message.py -------------------------------------------------------------------------------- /cylc/flow/task_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_outputs.py -------------------------------------------------------------------------------- /cylc/flow/task_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_pool.py -------------------------------------------------------------------------------- /cylc/flow/task_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_proxy.py -------------------------------------------------------------------------------- /cylc/flow/task_qualifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_qualifiers.py -------------------------------------------------------------------------------- /cylc/flow/task_queues/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_queues/__init__.py -------------------------------------------------------------------------------- /cylc/flow/task_queues/independent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_queues/independent.py -------------------------------------------------------------------------------- /cylc/flow/task_remote_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_remote_cmd.py -------------------------------------------------------------------------------- /cylc/flow/task_remote_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_remote_mgr.py -------------------------------------------------------------------------------- /cylc/flow/task_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_state.py -------------------------------------------------------------------------------- /cylc/flow/task_state_prop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_state_prop.py -------------------------------------------------------------------------------- /cylc/flow/task_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/task_trigger.py -------------------------------------------------------------------------------- /cylc/flow/taskdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/taskdef.py -------------------------------------------------------------------------------- /cylc/flow/templatevars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/templatevars.py -------------------------------------------------------------------------------- /cylc/flow/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/terminal.py -------------------------------------------------------------------------------- /cylc/flow/time_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/time_parser.py -------------------------------------------------------------------------------- /cylc/flow/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/timer.py -------------------------------------------------------------------------------- /cylc/flow/tui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/tui/__init__.py -------------------------------------------------------------------------------- /cylc/flow/tui/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/tui/app.py -------------------------------------------------------------------------------- /cylc/flow/tui/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/tui/data.py -------------------------------------------------------------------------------- /cylc/flow/tui/overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/tui/overlay.py -------------------------------------------------------------------------------- /cylc/flow/tui/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/tui/tree.py -------------------------------------------------------------------------------- /cylc/flow/tui/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/tui/updater.py -------------------------------------------------------------------------------- /cylc/flow/tui/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/tui/util.py -------------------------------------------------------------------------------- /cylc/flow/unicode_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/unicode_rules.py -------------------------------------------------------------------------------- /cylc/flow/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/util.py -------------------------------------------------------------------------------- /cylc/flow/wallclock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/wallclock.py -------------------------------------------------------------------------------- /cylc/flow/workflow_db_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/workflow_db_mgr.py -------------------------------------------------------------------------------- /cylc/flow/workflow_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/workflow_events.py -------------------------------------------------------------------------------- /cylc/flow/workflow_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/workflow_files.py -------------------------------------------------------------------------------- /cylc/flow/workflow_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/workflow_status.py -------------------------------------------------------------------------------- /cylc/flow/xtrigger_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/xtrigger_mgr.py -------------------------------------------------------------------------------- /cylc/flow/xtriggers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/xtriggers/__init__.py -------------------------------------------------------------------------------- /cylc/flow/xtriggers/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/xtriggers/echo.py -------------------------------------------------------------------------------- /cylc/flow/xtriggers/suite_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/xtriggers/suite_state.py -------------------------------------------------------------------------------- /cylc/flow/xtriggers/wall_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/xtriggers/wall_clock.py -------------------------------------------------------------------------------- /cylc/flow/xtriggers/workflow_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/xtriggers/workflow_state.py -------------------------------------------------------------------------------- /cylc/flow/xtriggers/xrandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/cylc/flow/xtriggers/xrandom.py -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/doc/README.md -------------------------------------------------------------------------------- /dockerfiles/cylc-dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/dockerfiles/cylc-dev/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/cylc-remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/dockerfiles/cylc-remote/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/cylc-remote/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/dockerfiles/cylc-remote/configure -------------------------------------------------------------------------------- /etc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/etc/README.md -------------------------------------------------------------------------------- /etc/bin/README: -------------------------------------------------------------------------------- 1 | A few scripts for use by Cylc developers. 2 | -------------------------------------------------------------------------------- /etc/bin/run-functional-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/etc/bin/run-functional-tests -------------------------------------------------------------------------------- /etc/bin/run-validate-tutorials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/etc/bin/run-validate-tutorials -------------------------------------------------------------------------------- /etc/bin/shellchecker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/etc/bin/shellchecker -------------------------------------------------------------------------------- /etc/bin/swarm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/etc/bin/swarm -------------------------------------------------------------------------------- /etc/bin/syntax_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/etc/bin/syntax_generator.py -------------------------------------------------------------------------------- /etc/conf/global.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/etc/conf/global.cylc -------------------------------------------------------------------------------- /etc/conf/ssh_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/etc/conf/ssh_config -------------------------------------------------------------------------------- /etc/notes/README.update-web-site: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/etc/notes/README.update-web-site -------------------------------------------------------------------------------- /etc/notes/poster-print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/etc/notes/poster-print.txt -------------------------------------------------------------------------------- /etc/syntax/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/etc/syntax/README -------------------------------------------------------------------------------- /etc/syntax/reference-files/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/etc/syntax/reference-files/flow.cylc -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/f: -------------------------------------------------------------------------------- 1 | functional/ -------------------------------------------------------------------------------- /tests/flakyfunctional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/flakyfunctional/README.md -------------------------------------------------------------------------------- /tests/flakyfunctional/cyclers/30-r1_at_icp_or.t: -------------------------------------------------------------------------------- 1 | 19-async_integer.t -------------------------------------------------------------------------------- /tests/flakyfunctional/cyclers/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/cylc-get-config/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/cylc-poll/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/cylc-show/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/database/02-retry.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/flakyfunctional/database/02-retry.t -------------------------------------------------------------------------------- /tests/flakyfunctional/database/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/events/01-task.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/flakyfunctional/events/01-task.t -------------------------------------------------------------------------------- /tests/flakyfunctional/events/44-timeout.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/flakyfunctional/events/44-timeout.t -------------------------------------------------------------------------------- /tests/flakyfunctional/events/44-timeout/bin/sleeper.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | sleep 300 4 | -------------------------------------------------------------------------------- /tests/flakyfunctional/events/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/execution-time-limit/01-at: -------------------------------------------------------------------------------- 1 | 00-background -------------------------------------------------------------------------------- /tests/flakyfunctional/execution-time-limit/01-at.t: -------------------------------------------------------------------------------- 1 | 00-background.t -------------------------------------------------------------------------------- /tests/flakyfunctional/execution-time-limit/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/hold-release/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/integer-cycling/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/job-submission/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/lib: -------------------------------------------------------------------------------- 1 | ../functional/lib -------------------------------------------------------------------------------- /tests/flakyfunctional/modes/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/restart/bin/ctb-select-task-states: -------------------------------------------------------------------------------- 1 | ../../../functional/restart/bin/ctb-select-task-states -------------------------------------------------------------------------------- /tests/flakyfunctional/restart/lib: -------------------------------------------------------------------------------- 1 | ../../functional/restart/lib -------------------------------------------------------------------------------- /tests/flakyfunctional/restart/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/shutdown/00-rm-db.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/flakyfunctional/shutdown/00-rm-db.t -------------------------------------------------------------------------------- /tests/flakyfunctional/shutdown/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/special/05-clock-triggered-utc: -------------------------------------------------------------------------------- 1 | 04-clock-triggered -------------------------------------------------------------------------------- /tests/flakyfunctional/special/06-clock-triggered-iso: -------------------------------------------------------------------------------- 1 | 04-clock-triggered -------------------------------------------------------------------------------- /tests/flakyfunctional/special/08-clock-triggered-0: -------------------------------------------------------------------------------- 1 | 04-clock-triggered -------------------------------------------------------------------------------- /tests/flakyfunctional/special/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/flakyfunctional/xtriggers/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/README.md -------------------------------------------------------------------------------- /tests/functional/authentication/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/broadcast/00-simple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/broadcast/00-simple.t -------------------------------------------------------------------------------- /tests/functional/broadcast/02-inherit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/broadcast/02-inherit.t -------------------------------------------------------------------------------- /tests/functional/broadcast/03-expire.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/broadcast/03-expire.t -------------------------------------------------------------------------------- /tests/functional/broadcast/04-empty.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/broadcast/04-empty.t -------------------------------------------------------------------------------- /tests/functional/broadcast/05-bad-point.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/broadcast/05-bad-point.t -------------------------------------------------------------------------------- /tests/functional/broadcast/07-timeout.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/broadcast/07-timeout.t -------------------------------------------------------------------------------- /tests/functional/broadcast/08-space.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/broadcast/08-space.t -------------------------------------------------------------------------------- /tests/functional/broadcast/09-remote.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/broadcast/09-remote.t -------------------------------------------------------------------------------- /tests/functional/broadcast/10-file-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/broadcast/10-file-1.t -------------------------------------------------------------------------------- /tests/functional/broadcast/11-file-2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/broadcast/11-file-2.t -------------------------------------------------------------------------------- /tests/functional/broadcast/11-file-2/broadcast-1.cylc: -------------------------------------------------------------------------------- 1 | script=printenv CYLC_FOOBAR 2 | -------------------------------------------------------------------------------- /tests/functional/broadcast/13-file-cancel/broadcast-2.cylc: -------------------------------------------------------------------------------- 1 | [environment] 2 | CYLC_QUX=quux corge 3 | -------------------------------------------------------------------------------- /tests/functional/broadcast/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cli/00-cycle-points.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cli/00-cycle-points.t -------------------------------------------------------------------------------- /tests/functional/cli/01-help.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cli/01-help.t -------------------------------------------------------------------------------- /tests/functional/cli/03-verbosity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cli/03-verbosity.t -------------------------------------------------------------------------------- /tests/functional/cli/05-colour.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cli/05-colour.t -------------------------------------------------------------------------------- /tests/functional/cli/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/clock-expire/00-basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/clock-expire/00-basic.t -------------------------------------------------------------------------------- /tests/functional/clock-expire/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/clock-trigger-inexact/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cyclepoint/00-time.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclepoint/00-time.t -------------------------------------------------------------------------------- /tests/functional/cyclepoint/02-template.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclepoint/02-template.t -------------------------------------------------------------------------------- /tests/functional/cyclepoint/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cyclers/00-daily.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/00-daily.t -------------------------------------------------------------------------------- /tests/functional/cyclers/01-hourly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/01-hourly.t -------------------------------------------------------------------------------- /tests/functional/cyclers/02-monthly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/02-monthly.t -------------------------------------------------------------------------------- /tests/functional/cyclers/03-multidaily.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/03-multidaily.t -------------------------------------------------------------------------------- /tests/functional/cyclers/04-multihourly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/04-multihourly.t -------------------------------------------------------------------------------- /tests/functional/cyclers/06-multiweekly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/06-multiweekly.t -------------------------------------------------------------------------------- /tests/functional/cyclers/07-multiyearly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/07-multiyearly.t -------------------------------------------------------------------------------- /tests/functional/cyclers/10-r1_final.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/10-r1_final.t -------------------------------------------------------------------------------- /tests/functional/cyclers/11-r1_initial.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/11-r1_initial.t -------------------------------------------------------------------------------- /tests/functional/cyclers/12-r1_middle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/12-r1_middle.t -------------------------------------------------------------------------------- /tests/functional/cyclers/13-r5_final.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/13-r5_final.t -------------------------------------------------------------------------------- /tests/functional/cyclers/14-r5_initial.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/14-r5_initial.t -------------------------------------------------------------------------------- /tests/functional/cyclers/15-subhourly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/15-subhourly.t -------------------------------------------------------------------------------- /tests/functional/cyclers/16-weekly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/16-weekly.t -------------------------------------------------------------------------------- /tests/functional/cyclers/17-yearly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/17-yearly.t -------------------------------------------------------------------------------- /tests/functional/cyclers/25-aeon.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/25-aeon.t -------------------------------------------------------------------------------- /tests/functional/cyclers/33-integer1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/33-integer1.t -------------------------------------------------------------------------------- /tests/functional/cyclers/35-day_of_week.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/35-day_of_week.t -------------------------------------------------------------------------------- /tests/functional/cyclers/37-exclusions.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/37-exclusions.t -------------------------------------------------------------------------------- /tests/functional/cyclers/48-icp-cutoff.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/48-icp-cutoff.t -------------------------------------------------------------------------------- /tests/functional/cyclers/aeon/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/aeon/flow.cylc -------------------------------------------------------------------------------- /tests/functional/cyclers/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/common -------------------------------------------------------------------------------- /tests/functional/cyclers/daily/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/daily/flow.cylc -------------------------------------------------------------------------------- /tests/functional/cyclers/hourly/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/hourly/flow.cylc -------------------------------------------------------------------------------- /tests/functional/cyclers/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cyclers/weekly/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/weekly/flow.cylc -------------------------------------------------------------------------------- /tests/functional/cyclers/yearly/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cyclers/yearly/flow.cylc -------------------------------------------------------------------------------- /tests/functional/cylc-cat-log/00-local.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-cat-log/00-local.t -------------------------------------------------------------------------------- /tests/functional/cylc-cat-log/01-remote.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-cat-log/01-remote.t -------------------------------------------------------------------------------- /tests/functional/cylc-cat-log/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-clean/00-basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-clean/00-basic.t -------------------------------------------------------------------------------- /tests/functional/cylc-clean/01-remote.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-clean/01-remote.t -------------------------------------------------------------------------------- /tests/functional/cylc-clean/02-targeted.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-clean/02-targeted.t -------------------------------------------------------------------------------- /tests/functional/cylc-clean/03-multi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-clean/03-multi.t -------------------------------------------------------------------------------- /tests/functional/cylc-clean/04-runN.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-clean/04-runN.t -------------------------------------------------------------------------------- /tests/functional/cylc-clean/06-nfs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-clean/06-nfs.t -------------------------------------------------------------------------------- /tests/functional/cylc-clean/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-combination-scripts/00-vip/reference.log: -------------------------------------------------------------------------------- 1 | 13000101T0000Z/foo -triggered off [] in flow 1 2 | -------------------------------------------------------------------------------- /tests/functional/cylc-combination-scripts/06-vip-named-run: -------------------------------------------------------------------------------- 1 | 00-vip -------------------------------------------------------------------------------- /tests/functional/cylc-combination-scripts/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-config/00-simple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-config/00-simple.t -------------------------------------------------------------------------------- /tests/functional/cylc-config/02-cycling.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-config/02-cycling.t -------------------------------------------------------------------------------- /tests/functional/cylc-config/03-icp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-config/03-icp.t -------------------------------------------------------------------------------- /tests/functional/cylc-config/06-compat.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-config/06-compat.t -------------------------------------------------------------------------------- /tests/functional/cylc-config/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-diff/00-basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-diff/00-basic.t -------------------------------------------------------------------------------- /tests/functional/cylc-diff/01-same.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-diff/01-same.t -------------------------------------------------------------------------------- /tests/functional/cylc-diff/02-identical.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-diff/02-identical.t -------------------------------------------------------------------------------- /tests/functional/cylc-diff/03-icp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-diff/03-icp.t -------------------------------------------------------------------------------- /tests/functional/cylc-diff/04-icp-2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-diff/04-icp-2.t -------------------------------------------------------------------------------- /tests/functional/cylc-diff/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-get-cylc-version/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-get-resources/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-get-site-config/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-get-workflow-contact/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-graph-diff/00-simple-same: -------------------------------------------------------------------------------- 1 | 00-simple-control -------------------------------------------------------------------------------- /tests/functional/cylc-graph-diff/01-icp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-graph-diff/01-icp.t -------------------------------------------------------------------------------- /tests/functional/cylc-graph-diff/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-install/00-simple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-install/00-simple.t -------------------------------------------------------------------------------- /tests/functional/cylc-install/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-kill/02-submitted.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-kill/02-submitted.t -------------------------------------------------------------------------------- /tests/functional/cylc-kill/04-handlers.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-kill/04-handlers.t -------------------------------------------------------------------------------- /tests/functional/cylc-kill/05-retries.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-kill/05-retries.t -------------------------------------------------------------------------------- /tests/functional/cylc-kill/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-lint/00.lint.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-lint/00.lint.t -------------------------------------------------------------------------------- /tests/functional/cylc-lint/01.lint-toml.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-lint/01.lint-toml.t -------------------------------------------------------------------------------- /tests/functional/cylc-lint/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-list/00-options: -------------------------------------------------------------------------------- 1 | workflow/ -------------------------------------------------------------------------------- /tests/functional/cylc-list/00-options.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-list/00-options.t -------------------------------------------------------------------------------- /tests/functional/cylc-list/01-icp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-list/01-icp.t -------------------------------------------------------------------------------- /tests/functional/cylc-list/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-message/00-ssh.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-message/00-ssh.t -------------------------------------------------------------------------------- /tests/functional/cylc-message/02-multi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-message/02-multi.t -------------------------------------------------------------------------------- /tests/functional/cylc-message/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-ping/00-simple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-ping/00-simple.t -------------------------------------------------------------------------------- /tests/functional/cylc-ping/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-play/00-contact.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-play/00-contact.t -------------------------------------------------------------------------------- /tests/functional/cylc-play/01-profiler.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-play/01-profiler.t -------------------------------------------------------------------------------- /tests/functional/cylc-play/02-format.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-play/02-format.t -------------------------------------------------------------------------------- /tests/functional/cylc-play/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-poll/00-basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-poll/00-basic.t -------------------------------------------------------------------------------- /tests/functional/cylc-poll/07-pbs.t: -------------------------------------------------------------------------------- 1 | 06-loadleveler.t -------------------------------------------------------------------------------- /tests/functional/cylc-poll/08-slurm.t: -------------------------------------------------------------------------------- 1 | 06-loadleveler.t -------------------------------------------------------------------------------- /tests/functional/cylc-poll/09-lsf.t: -------------------------------------------------------------------------------- 1 | 06-loadleveler.t -------------------------------------------------------------------------------- /tests/functional/cylc-poll/14-intervals.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-poll/14-intervals.t -------------------------------------------------------------------------------- /tests/functional/cylc-poll/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-reinstall/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-remove/00-simple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-remove/00-simple.t -------------------------------------------------------------------------------- /tests/functional/cylc-remove/02-cycling.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-remove/02-cycling.t -------------------------------------------------------------------------------- /tests/functional/cylc-remove/03-flow.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-remove/03-flow.t -------------------------------------------------------------------------------- /tests/functional/cylc-remove/04-kill.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-remove/04-kill.t -------------------------------------------------------------------------------- /tests/functional/cylc-remove/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-set/03-set-failed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-set/03-set-failed.t -------------------------------------------------------------------------------- /tests/functional/cylc-set/04-switch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-set/04-switch.t -------------------------------------------------------------------------------- /tests/functional/cylc-set/05-expire.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-set/05-expire.t -------------------------------------------------------------------------------- /tests/functional/cylc-set/06-parentless.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-set/06-parentless.t -------------------------------------------------------------------------------- /tests/functional/cylc-set/08-switch2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-set/08-switch2.t -------------------------------------------------------------------------------- /tests/functional/cylc-set/09-set-skip.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-set/09-set-skip.t -------------------------------------------------------------------------------- /tests/functional/cylc-set/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-show/05-complex.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-show/05-complex.t -------------------------------------------------------------------------------- /tests/functional/cylc-show/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-subscribe/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-trigger/00-compat.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/cylc-trigger/00-compat.t -------------------------------------------------------------------------------- /tests/functional/cylc-trigger/01-queued.t: -------------------------------------------------------------------------------- 1 | 00-compat.t -------------------------------------------------------------------------------- /tests/functional/cylc-trigger/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/cylc-view/00-single-inc/inc/default.jinja2: -------------------------------------------------------------------------------- 1 | {% set N_MEMBERS = 4 %} 2 | -------------------------------------------------------------------------------- /tests/functional/cylc-view/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/data-store/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/database/03-remote.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/database/03-remote.t -------------------------------------------------------------------------------- /tests/functional/database/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/deprecations/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/directives/01-at.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/directives/01-at.t -------------------------------------------------------------------------------- /tests/functional/directives/02-slurm.t: -------------------------------------------------------------------------------- 1 | 00-loadleveler.t -------------------------------------------------------------------------------- /tests/functional/directives/03-pbs.t: -------------------------------------------------------------------------------- 1 | 00-loadleveler.t -------------------------------------------------------------------------------- /tests/functional/directives/pbs/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/directives/pbs/flow.cylc -------------------------------------------------------------------------------- /tests/functional/directives/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/empy/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/env-filter/00-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/env-filter/00-filter.t -------------------------------------------------------------------------------- /tests/functional/env-filter/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/events/00-workflow.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/events/00-workflow.t -------------------------------------------------------------------------------- /tests/functional/events/01-timeout.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/events/01-timeout.t -------------------------------------------------------------------------------- /tests/functional/events/02-multi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/events/02-multi.t -------------------------------------------------------------------------------- /tests/functional/events/13-task-event-mail-globalcfg: -------------------------------------------------------------------------------- 1 | 09-task-event-mail -------------------------------------------------------------------------------- /tests/functional/events/13-task-event-mail-globalcfg.t: -------------------------------------------------------------------------------- 1 | 09-task-event-mail.t -------------------------------------------------------------------------------- /tests/functional/events/17-task-event-job-logs-retrieve-command: -------------------------------------------------------------------------------- 1 | 10-task-event-job-logs-retrieve -------------------------------------------------------------------------------- /tests/functional/events/19-workflow-event-mail-globalcfg: -------------------------------------------------------------------------------- 1 | 18-workflow-event-mail -------------------------------------------------------------------------------- /tests/functional/events/19-workflow-event-mail-globalcfg.t: -------------------------------------------------------------------------------- 1 | 18-workflow-event-mail.t -------------------------------------------------------------------------------- /tests/functional/events/21-workflow-event-handlers-globalcfg: -------------------------------------------------------------------------------- 1 | 20-workflow-event-handlers -------------------------------------------------------------------------------- /tests/functional/events/21-workflow-event-handlers-globalcfg.t: -------------------------------------------------------------------------------- 1 | 20-workflow-event-handlers.t -------------------------------------------------------------------------------- /tests/functional/events/28-inactivity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/events/28-inactivity.t -------------------------------------------------------------------------------- /tests/functional/events/34-task-abort.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/events/34-task-abort.t -------------------------------------------------------------------------------- /tests/functional/events/41-late.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/events/41-late.t -------------------------------------------------------------------------------- /tests/functional/events/41-late/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/events/41-late/flow.cylc -------------------------------------------------------------------------------- /tests/functional/events/43-late-spawn.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/events/43-late-spawn.t -------------------------------------------------------------------------------- /tests/functional/events/47-long-output.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/events/47-long-output.t -------------------------------------------------------------------------------- /tests/functional/events/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/events/timeout/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/events/timeout/flow.cylc -------------------------------------------------------------------------------- /tests/functional/execution-time-limit/03-pbs: -------------------------------------------------------------------------------- 1 | 02-slurm -------------------------------------------------------------------------------- /tests/functional/execution-time-limit/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/ext-trigger/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/flow-triggers/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/graph-equivalence/splitline_refs/a-ref: -------------------------------------------------------------------------------- 1 | prerequisites: (None) 2 | outputs: ('⨯': not completed) 3 | -------------------------------------------------------------------------------- /tests/functional/graph-equivalence/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/graphing/00-boundaries.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/graphing/00-boundaries.t -------------------------------------------------------------------------------- /tests/functional/graphing/01-namespace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/graphing/01-namespace.t -------------------------------------------------------------------------------- /tests/functional/graphing/05-suicide-family/graph.plain.ref: -------------------------------------------------------------------------------- 1 | graph 2 | node "1/foo" "foo\n1" 3 | stop 4 | -------------------------------------------------------------------------------- /tests/functional/graphing/06-family-or.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/graphing/06-family-or.t -------------------------------------------------------------------------------- /tests/functional/graphing/08-ungrouped.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/graphing/08-ungrouped.t -------------------------------------------------------------------------------- /tests/functional/graphing/09-close-fam.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/graphing/09-close-fam.t -------------------------------------------------------------------------------- /tests/functional/graphing/09-ref-graph.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/graphing/09-ref-graph.t -------------------------------------------------------------------------------- /tests/functional/graphing/11-nested-fam.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/graphing/11-nested-fam.t -------------------------------------------------------------------------------- /tests/functional/graphing/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/graphql/01-workflow.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/graphql/01-workflow.t -------------------------------------------------------------------------------- /tests/functional/graphql/03-is-held-arg.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/graphql/03-is-held-arg.t -------------------------------------------------------------------------------- /tests/functional/graphql/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/hold-release/08-hold.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/hold-release/08-hold.t -------------------------------------------------------------------------------- /tests/functional/hold-release/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/include-files/00-basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/include-files/00-basic.t -------------------------------------------------------------------------------- /tests/functional/include-files/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/inheritance/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/intelligent-host-selection/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/intercycle/00-past.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/intercycle/00-past.t -------------------------------------------------------------------------------- /tests/functional/intercycle/01-future.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/intercycle/01-future.t -------------------------------------------------------------------------------- /tests/functional/intercycle/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/jinja2/00-simple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/jinja2/00-simple.t -------------------------------------------------------------------------------- /tests/functional/jinja2/01-include.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/jinja2/01-include.t -------------------------------------------------------------------------------- /tests/functional/jinja2/03-bad.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/jinja2/03-bad.t -------------------------------------------------------------------------------- /tests/functional/jinja2/05-commandline.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/jinja2/05-commandline.t -------------------------------------------------------------------------------- /tests/functional/jinja2/06-do-extension.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/jinja2/06-do-extension.t -------------------------------------------------------------------------------- /tests/functional/jinja2/07-filters.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/jinja2/07-filters.t -------------------------------------------------------------------------------- /tests/functional/jinja2/11-logging.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/jinja2/11-logging.t -------------------------------------------------------------------------------- /tests/functional/jinja2/commandline-set/vars.txt: -------------------------------------------------------------------------------- 1 | TASKNAME="foo" 2 | STEP="2" 3 | -------------------------------------------------------------------------------- /tests/functional/jinja2/filters/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/jinja2/filters/flow.cylc -------------------------------------------------------------------------------- /tests/functional/jinja2/include/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/jinja2/include/flow.cylc -------------------------------------------------------------------------------- /tests/functional/jinja2/simple/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/jinja2/simple/flow.cylc -------------------------------------------------------------------------------- /tests/functional/jinja2/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/job-file-trap/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/job-kill/00-local.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/job-kill/00-local.t -------------------------------------------------------------------------------- /tests/functional/job-kill/01-remote.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/job-kill/01-remote.t -------------------------------------------------------------------------------- /tests/functional/job-kill/03-slurm.t: -------------------------------------------------------------------------------- 1 | 02-loadleveler.t -------------------------------------------------------------------------------- /tests/functional/job-kill/04-pbs.t: -------------------------------------------------------------------------------- 1 | 02-loadleveler.t -------------------------------------------------------------------------------- /tests/functional/job-kill/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/job-submission/00-user.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/job-submission/00-user.t -------------------------------------------------------------------------------- /tests/functional/job-submission/02-job-nn-remote-host: -------------------------------------------------------------------------------- 1 | 01-job-nn-localhost -------------------------------------------------------------------------------- /tests/functional/job-submission/03-job-nn-remote-host-with-shared-fs: -------------------------------------------------------------------------------- 1 | 01-job-nn-localhost -------------------------------------------------------------------------------- /tests/functional/job-submission/13-tidy-submits-of-prev-run-remote-host: -------------------------------------------------------------------------------- 1 | 12-tidy-submits-of-prev-run -------------------------------------------------------------------------------- /tests/functional/job-submission/14-tidy-submits-of-prev-run-remote-host-with-shared-fs: -------------------------------------------------------------------------------- 1 | 12-tidy-submits-of-prev-run -------------------------------------------------------------------------------- /tests/functional/job-submission/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/jobscript/00-torture.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/jobscript/00-torture.t -------------------------------------------------------------------------------- /tests/functional/jobscript/00-torture/bin/foo.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo "Hello from $0" 3 | -------------------------------------------------------------------------------- /tests/functional/jobscript/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/lib/bash/test_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/lib/python/diffr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/lib/python/diffr.py -------------------------------------------------------------------------------- /tests/functional/lib/python/test_diffr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/lib/python/test_diffr.py -------------------------------------------------------------------------------- /tests/functional/logging/01-basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/logging/01-basic.t -------------------------------------------------------------------------------- /tests/functional/logging/02-duplicates.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/logging/02-duplicates.t -------------------------------------------------------------------------------- /tests/functional/logging/03-roll.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/logging/03-roll.t -------------------------------------------------------------------------------- /tests/functional/logging/04-dev_mode.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/logging/04-dev_mode.t -------------------------------------------------------------------------------- /tests/functional/logging/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/message-triggers/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/n-window/02-big-window.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/n-window/02-big-window.t -------------------------------------------------------------------------------- /tests/functional/n-window/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/offset/00-final-simple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/offset/00-final-simple.t -------------------------------------------------------------------------------- /tests/functional/offset/01-final-next.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/offset/01-final-next.t -------------------------------------------------------------------------------- /tests/functional/offset/02-final-chain.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/offset/02-final-chain.t -------------------------------------------------------------------------------- /tests/functional/offset/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/optional-outputs/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/param_expand/01-basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/param_expand/01-basic.t -------------------------------------------------------------------------------- /tests/functional/param_expand/03-env-tmpl/t1-0099-that.ref: -------------------------------------------------------------------------------- 1 | 99 stuff that open 2 | -------------------------------------------------------------------------------- /tests/functional/param_expand/03-env-tmpl/t1-0099-this.ref: -------------------------------------------------------------------------------- 1 | 99 stuff this open 2 | -------------------------------------------------------------------------------- /tests/functional/param_expand/03-env-tmpl/t1-0101-that.ref: -------------------------------------------------------------------------------- 1 | 101 stuff that open 2 | -------------------------------------------------------------------------------- /tests/functional/param_expand/03-env-tmpl/t1-0101-this.ref: -------------------------------------------------------------------------------- 1 | 101 stuff this open 2 | -------------------------------------------------------------------------------- /tests/functional/param_expand/03-env-tmpl/t2-0099-that.ref: -------------------------------------------------------------------------------- 1 | 99 stuff that closed 2 | -------------------------------------------------------------------------------- /tests/functional/param_expand/03-env-tmpl/t2-0099-this.ref: -------------------------------------------------------------------------------- 1 | 99 stuff this closed 2 | -------------------------------------------------------------------------------- /tests/functional/param_expand/03-env-tmpl/t2-0101-that.ref: -------------------------------------------------------------------------------- 1 | 101 stuff that closed 2 | -------------------------------------------------------------------------------- /tests/functional/param_expand/03-env-tmpl/t2-0101-this.ref: -------------------------------------------------------------------------------- 1 | 101 stuff this closed 2 | -------------------------------------------------------------------------------- /tests/functional/param_expand/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/pause-resume/21-client.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/pause-resume/21-client.t -------------------------------------------------------------------------------- /tests/functional/pause-resume/test_header: -------------------------------------------------------------------------------- 1 | ../../functional/lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/periodicals/00-daily.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/periodicals/00-daily.t -------------------------------------------------------------------------------- /tests/functional/periodicals/01-daily.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/periodicals/01-daily.t -------------------------------------------------------------------------------- /tests/functional/periodicals/02-daily.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/periodicals/02-daily.t -------------------------------------------------------------------------------- /tests/functional/periodicals/03-monthly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/periodicals/03-monthly.t -------------------------------------------------------------------------------- /tests/functional/periodicals/04-monthly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/periodicals/04-monthly.t -------------------------------------------------------------------------------- /tests/functional/periodicals/05-monthly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/periodicals/05-monthly.t -------------------------------------------------------------------------------- /tests/functional/periodicals/06-yearly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/periodicals/06-yearly.t -------------------------------------------------------------------------------- /tests/functional/periodicals/07-yearly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/periodicals/07-yearly.t -------------------------------------------------------------------------------- /tests/functional/periodicals/08-yearly.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/periodicals/08-yearly.t -------------------------------------------------------------------------------- /tests/functional/periodicals/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/periodicals/README -------------------------------------------------------------------------------- /tests/functional/periodicals/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/platforms/12-ping-pong.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/platforms/12-ping-pong.t -------------------------------------------------------------------------------- /tests/functional/platforms/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/post-install/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/pre-initial/00-simple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/pre-initial/00-simple.t -------------------------------------------------------------------------------- /tests/functional/pre-initial/04-warm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/pre-initial/04-warm.t -------------------------------------------------------------------------------- /tests/functional/pre-initial/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/queues/00-queuesize-3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/queues/00-queuesize-3.t -------------------------------------------------------------------------------- /tests/functional/queues/01-queuesize-5.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/queues/01-queuesize-5.t -------------------------------------------------------------------------------- /tests/functional/queues/02-queueorder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/queues/02-queueorder.t -------------------------------------------------------------------------------- /tests/functional/queues/qsize/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/queues/qsize/flow.cylc -------------------------------------------------------------------------------- /tests/functional/queues/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/recurrence-min/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/reload/00-simple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/00-simple.t -------------------------------------------------------------------------------- /tests/functional/reload/01-startup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/01-startup.t -------------------------------------------------------------------------------- /tests/functional/reload/02-content.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/02-content.t -------------------------------------------------------------------------------- /tests/functional/reload/03-queues.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/03-queues.t -------------------------------------------------------------------------------- /tests/functional/reload/04-inheritance.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/04-inheritance.t -------------------------------------------------------------------------------- /tests/functional/reload/06-graphing-fam.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/06-graphing-fam.t -------------------------------------------------------------------------------- /tests/functional/reload/07-final-cycle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/07-final-cycle.t -------------------------------------------------------------------------------- /tests/functional/reload/08-cycle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/08-cycle.t -------------------------------------------------------------------------------- /tests/functional/reload/09-garbage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/09-garbage.t -------------------------------------------------------------------------------- /tests/functional/reload/10-runahead.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/10-runahead.t -------------------------------------------------------------------------------- /tests/functional/reload/11-retrying.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/11-retrying.t -------------------------------------------------------------------------------- /tests/functional/reload/12-remove-task.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/12-remove-task.t -------------------------------------------------------------------------------- /tests/functional/reload/13-add-task.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/13-add-task.t -------------------------------------------------------------------------------- /tests/functional/reload/14-waiting.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/14-waiting.t -------------------------------------------------------------------------------- /tests/functional/reload/19-remote-kill.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/19-remote-kill.t -------------------------------------------------------------------------------- /tests/functional/reload/20-stop-point.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/20-stop-point.t -------------------------------------------------------------------------------- /tests/functional/reload/25-xtriggers.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/25-xtriggers.t -------------------------------------------------------------------------------- /tests/functional/reload/26-stalled.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/26-stalled.t -------------------------------------------------------------------------------- /tests/functional/reload/28-preparing.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/28-preparing.t -------------------------------------------------------------------------------- /tests/functional/reload/29-global.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/29-global.t -------------------------------------------------------------------------------- /tests/functional/reload/garbage/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/reload/garbage/flow.cylc -------------------------------------------------------------------------------- /tests/functional/reload/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/remote/00-basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/remote/00-basic.t -------------------------------------------------------------------------------- /tests/functional/remote/01-file-install.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/remote/01-file-install.t -------------------------------------------------------------------------------- /tests/functional/remote/04-symlink-dirs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/remote/04-symlink-dirs.t -------------------------------------------------------------------------------- /tests/functional/remote/05-remote-init.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/remote/05-remote-init.t -------------------------------------------------------------------------------- /tests/functional/remote/06-poll.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/remote/06-poll.t -------------------------------------------------------------------------------- /tests/functional/remote/07-slow-file-install/bin/my-rsync.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sleep 30 3 | exec rsync "$@" 4 | -------------------------------------------------------------------------------- /tests/functional/remote/basic/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/remote/basic/flow.cylc -------------------------------------------------------------------------------- /tests/functional/remote/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/repeated-items/00-one.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/repeated-items/00-one.t -------------------------------------------------------------------------------- /tests/functional/repeated-items/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/restart/00-pre-initial.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/00-pre-initial.t -------------------------------------------------------------------------------- /tests/functional/restart/01-broadcast.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/01-broadcast.t -------------------------------------------------------------------------------- /tests/functional/restart/02-failed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/02-failed.t -------------------------------------------------------------------------------- /tests/functional/restart/03-retrying.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/03-retrying.t -------------------------------------------------------------------------------- /tests/functional/restart/04-running.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/04-running.t -------------------------------------------------------------------------------- /tests/functional/restart/06-succeeded.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/06-succeeded.t -------------------------------------------------------------------------------- /tests/functional/restart/07-waiting.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/07-waiting.t -------------------------------------------------------------------------------- /tests/functional/restart/09-reload.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/09-reload.t -------------------------------------------------------------------------------- /tests/functional/restart/17-template-vars-file: -------------------------------------------------------------------------------- 1 | 16-template-vars -------------------------------------------------------------------------------- /tests/functional/restart/20-event-retry.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/20-event-retry.t -------------------------------------------------------------------------------- /tests/functional/restart/22-hold.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/22-hold.t -------------------------------------------------------------------------------- /tests/functional/restart/23-hold-retry.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/23-hold-retry.t -------------------------------------------------------------------------------- /tests/functional/restart/26-remote-kill.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/26-remote-kill.t -------------------------------------------------------------------------------- /tests/functional/restart/30-outputs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/30-outputs.t -------------------------------------------------------------------------------- /tests/functional/restart/33-simulation.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/33-simulation.t -------------------------------------------------------------------------------- /tests/functional/restart/44-reinvoke.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/44-reinvoke.t -------------------------------------------------------------------------------- /tests/functional/restart/45-stop-task.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/45-stop-task.t -------------------------------------------------------------------------------- /tests/functional/restart/50-two-flows.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/50-two-flows.t -------------------------------------------------------------------------------- /tests/functional/restart/55-stalled.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/55-stalled.t -------------------------------------------------------------------------------- /tests/functional/restart/57-ghost-job.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/57-ghost-job.t -------------------------------------------------------------------------------- /tests/functional/restart/failed/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/failed/flow.cylc -------------------------------------------------------------------------------- /tests/functional/restart/reload/flow.cylc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/restart/reload/flow.cylc -------------------------------------------------------------------------------- /tests/functional/restart/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/retries/02-xtriggers.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/retries/02-xtriggers.t -------------------------------------------------------------------------------- /tests/functional/retries/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/rnd/01-signals.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/rnd/01-signals.t -------------------------------------------------------------------------------- /tests/functional/rnd/03-check-versions.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/rnd/03-check-versions.t -------------------------------------------------------------------------------- /tests/functional/rnd/04-conditions.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/rnd/04-conditions.t -------------------------------------------------------------------------------- /tests/functional/rnd/05-main-loop.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/rnd/05-main-loop.t -------------------------------------------------------------------------------- /tests/functional/rnd/06-unicode.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/rnd/06-unicode.t -------------------------------------------------------------------------------- /tests/functional/rnd/08-cylc-list.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/rnd/08-cylc-list.t -------------------------------------------------------------------------------- /tests/functional/rnd/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/run_modes/01-dummy.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/run_modes/01-dummy.t -------------------------------------------------------------------------------- /tests/functional/run_modes/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/runahead/00-runahead.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/runahead/00-runahead.t -------------------------------------------------------------------------------- /tests/functional/runahead/07-time-limit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/runahead/07-time-limit.t -------------------------------------------------------------------------------- /tests/functional/runahead/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/shutdown/00-cycle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/shutdown/00-cycle.t -------------------------------------------------------------------------------- /tests/functional/shutdown/01-task.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/shutdown/01-task.t -------------------------------------------------------------------------------- /tests/functional/shutdown/02-no-dir.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/shutdown/02-no-dir.t -------------------------------------------------------------------------------- /tests/functional/shutdown/03-bad-cycle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/shutdown/03-bad-cycle.t -------------------------------------------------------------------------------- /tests/functional/shutdown/04-kill.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/shutdown/04-kill.t -------------------------------------------------------------------------------- /tests/functional/shutdown/05-auto.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/shutdown/05-auto.t -------------------------------------------------------------------------------- /tests/functional/shutdown/07-task-fail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/shutdown/07-task-fail.t -------------------------------------------------------------------------------- /tests/functional/shutdown/08-now1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/shutdown/08-now1.t -------------------------------------------------------------------------------- /tests/functional/shutdown/09-now2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/shutdown/09-now2.t -------------------------------------------------------------------------------- /tests/functional/shutdown/15-bad-port-file-check-globalcfg: -------------------------------------------------------------------------------- 1 | 12-bad-port-file-check -------------------------------------------------------------------------------- /tests/functional/shutdown/15-bad-port-file-check-globalcfg.t: -------------------------------------------------------------------------------- 1 | 12-bad-port-file-check.t -------------------------------------------------------------------------------- /tests/functional/shutdown/16-no-port-file-check-globalcfg: -------------------------------------------------------------------------------- 1 | 13-no-port-file-check -------------------------------------------------------------------------------- /tests/functional/shutdown/16-no-port-file-check-globalcfg.t: -------------------------------------------------------------------------------- 1 | 13-no-port-file-check.t -------------------------------------------------------------------------------- /tests/functional/shutdown/17-no-dir-check-globalcfg: -------------------------------------------------------------------------------- 1 | 14-no-dir-check -------------------------------------------------------------------------------- /tests/functional/shutdown/17-no-dir-check-globalcfg.t: -------------------------------------------------------------------------------- 1 | 14-no-dir-check.t -------------------------------------------------------------------------------- /tests/functional/shutdown/21-stop-kill.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/shutdown/21-stop-kill.t -------------------------------------------------------------------------------- /tests/functional/shutdown/22-stop-now.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/shutdown/22-stop-now.t -------------------------------------------------------------------------------- /tests/functional/shutdown/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/spawn-on-demand/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/special/00-sequential.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/special/00-sequential.t -------------------------------------------------------------------------------- /tests/functional/special/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/startup/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/task-name/00-basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/task-name/00-basic.t -------------------------------------------------------------------------------- /tests/functional/task-name/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/test_functions/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/triggering/00-recovery.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/triggering/00-recovery.t -------------------------------------------------------------------------------- /tests/functional/triggering/10-finish.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/triggering/10-finish.t -------------------------------------------------------------------------------- /tests/functional/triggering/11-start.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/triggering/11-start.t -------------------------------------------------------------------------------- /tests/functional/triggering/12-succeed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/triggering/12-succeed.t -------------------------------------------------------------------------------- /tests/functional/triggering/13-submit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/triggering/13-submit.t -------------------------------------------------------------------------------- /tests/functional/triggering/21-expire.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/triggering/21-expire.t -------------------------------------------------------------------------------- /tests/functional/triggering/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/validate/00-multi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/validate/00-multi.t -------------------------------------------------------------------------------- /tests/functional/validate/01-periodical.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/validate/01-periodical.t -------------------------------------------------------------------------------- /tests/functional/validate/08-whitespace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/validate/08-whitespace.t -------------------------------------------------------------------------------- /tests/functional/validate/18-fail-no-scheduling/flow.cylc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/validate/19-fail-no-dependencies/flow.cylc: -------------------------------------------------------------------------------- 1 | [scheduling] 2 | [[graph]] 3 | -------------------------------------------------------------------------------- /tests/functional/validate/20-fail-no-graph/flow.cylc: -------------------------------------------------------------------------------- 1 | [scheduling] 2 | [[graph]] 3 | -------------------------------------------------------------------------------- /tests/functional/validate/50-hyphen-fam.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/validate/50-hyphen-fam.t -------------------------------------------------------------------------------- /tests/functional/validate/64-circular.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/validate/64-circular.t -------------------------------------------------------------------------------- /tests/functional/validate/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/workflow-host-self-id/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/workflow-state/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/functional/xtriggers/03-sequence.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/functional/xtriggers/03-sequence.t -------------------------------------------------------------------------------- /tests/functional/xtriggers/test_header: -------------------------------------------------------------------------------- 1 | ../lib/bash/test_header -------------------------------------------------------------------------------- /tests/i: -------------------------------------------------------------------------------- 1 | integration/ -------------------------------------------------------------------------------- /tests/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/README.md -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/main_loop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/network/key_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/network/key_setup.py -------------------------------------------------------------------------------- /tests/integration/network/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/network/test_client.py -------------------------------------------------------------------------------- /tests/integration/network/test_graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/network/test_graphql.py -------------------------------------------------------------------------------- /tests/integration/network/test_replier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/network/test_replier.py -------------------------------------------------------------------------------- /tests/integration/network/test_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/network/test_scan.py -------------------------------------------------------------------------------- /tests/integration/network/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/network/test_server.py -------------------------------------------------------------------------------- /tests/integration/network/test_zmq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/network/test_zmq.py -------------------------------------------------------------------------------- /tests/integration/run_modes/test_skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/run_modes/test_skip.py -------------------------------------------------------------------------------- /tests/integration/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/scripts/__init__.py -------------------------------------------------------------------------------- /tests/integration/scripts/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/scripts/conftest.py -------------------------------------------------------------------------------- /tests/integration/scripts/test_cat_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/scripts/test_cat_log.py -------------------------------------------------------------------------------- /tests/integration/scripts/test_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/scripts/test_dump.py -------------------------------------------------------------------------------- /tests/integration/scripts/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/scripts/test_graph.py -------------------------------------------------------------------------------- /tests/integration/scripts/test_kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/scripts/test_kill.py -------------------------------------------------------------------------------- /tests/integration/scripts/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/scripts/test_list.py -------------------------------------------------------------------------------- /tests/integration/scripts/test_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/scripts/test_set.py -------------------------------------------------------------------------------- /tests/integration/scripts/test_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/scripts/test_show.py -------------------------------------------------------------------------------- /tests/integration/test_broadcast_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_broadcast_mgr.py -------------------------------------------------------------------------------- /tests/integration/test_compat_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_compat_mode.py -------------------------------------------------------------------------------- /tests/integration/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_config.py -------------------------------------------------------------------------------- /tests/integration/test_data_store_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_data_store_mgr.py -------------------------------------------------------------------------------- /tests/integration/test_dbstatecheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_dbstatecheck.py -------------------------------------------------------------------------------- /tests/integration/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_examples.py -------------------------------------------------------------------------------- /tests/integration/test_flow_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_flow_assignment.py -------------------------------------------------------------------------------- /tests/integration/test_force_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_force_trigger.py -------------------------------------------------------------------------------- /tests/integration/test_get_old_tvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_get_old_tvars.py -------------------------------------------------------------------------------- /tests/integration/test_id_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_id_cli.py -------------------------------------------------------------------------------- /tests/integration/test_id_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_id_match.py -------------------------------------------------------------------------------- /tests/integration/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_install.py -------------------------------------------------------------------------------- /tests/integration/test_job_runner_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_job_runner_mgr.py -------------------------------------------------------------------------------- /tests/integration/test_mode_on_restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_mode_on_restart.py -------------------------------------------------------------------------------- /tests/integration/test_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_platforms.py -------------------------------------------------------------------------------- /tests/integration/test_queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_queues.py -------------------------------------------------------------------------------- /tests/integration/test_reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_reload.py -------------------------------------------------------------------------------- /tests/integration/test_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_remove.py -------------------------------------------------------------------------------- /tests/integration/test_scan_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_scan_api.py -------------------------------------------------------------------------------- /tests/integration/test_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_scheduler.py -------------------------------------------------------------------------------- /tests/integration/test_subprocctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_subprocctx.py -------------------------------------------------------------------------------- /tests/integration/test_task_events_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_task_events_mgr.py -------------------------------------------------------------------------------- /tests/integration/test_task_job_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_task_job_mgr.py -------------------------------------------------------------------------------- /tests/integration/test_task_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_task_pool.py -------------------------------------------------------------------------------- /tests/integration/test_task_remote_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_task_remote_mgr.py -------------------------------------------------------------------------------- /tests/integration/test_taskdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_taskdef.py -------------------------------------------------------------------------------- /tests/integration/test_workflow_db_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_workflow_db_mgr.py -------------------------------------------------------------------------------- /tests/integration/test_workflow_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_workflow_events.py -------------------------------------------------------------------------------- /tests/integration/test_workflow_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_workflow_files.py -------------------------------------------------------------------------------- /tests/integration/test_xtrigger_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/test_xtrigger_mgr.py -------------------------------------------------------------------------------- /tests/integration/tui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/tui/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/tui/conftest.py -------------------------------------------------------------------------------- /tests/integration/tui/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/tui/test_app.py -------------------------------------------------------------------------------- /tests/integration/tui/test_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/tui/test_logs.py -------------------------------------------------------------------------------- /tests/integration/tui/test_mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/tui/test_mutations.py -------------------------------------------------------------------------------- /tests/integration/tui/test_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/tui/test_show.py -------------------------------------------------------------------------------- /tests/integration/tui/test_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/tui/test_updater.py -------------------------------------------------------------------------------- /tests/integration/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/utils/__init__.py -------------------------------------------------------------------------------- /tests/integration/utils/entry_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/utils/entry_points.py -------------------------------------------------------------------------------- /tests/integration/utils/flow_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/utils/flow_tools.py -------------------------------------------------------------------------------- /tests/integration/utils/flow_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/utils/flow_writer.py -------------------------------------------------------------------------------- /tests/integration/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/integration/utils/test_utils.py -------------------------------------------------------------------------------- /tests/k: -------------------------------------------------------------------------------- 1 | flakyfunctional/ -------------------------------------------------------------------------------- /tests/u: -------------------------------------------------------------------------------- 1 | unit/ -------------------------------------------------------------------------------- /tests/unit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/README.md -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/cfgspec/test_globalcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/cfgspec/test_globalcfg.py -------------------------------------------------------------------------------- /tests/unit/cfgspec/test_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/cfgspec/test_workflow.py -------------------------------------------------------------------------------- /tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/conftest.py -------------------------------------------------------------------------------- /tests/unit/cycling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/cycling/__init__.py -------------------------------------------------------------------------------- /tests/unit/cycling/test_cycling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/cycling/test_cycling.py -------------------------------------------------------------------------------- /tests/unit/cycling/test_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/cycling/test_integer.py -------------------------------------------------------------------------------- /tests/unit/cycling/test_iso8601.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/cycling/test_iso8601.py -------------------------------------------------------------------------------- /tests/unit/cycling/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/cycling/test_util.py -------------------------------------------------------------------------------- /tests/unit/filetree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/filetree.py -------------------------------------------------------------------------------- /tests/unit/main_loop/test_log_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/main_loop/test_log_db.py -------------------------------------------------------------------------------- /tests/unit/main_loop/test_log_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/main_loop/test_log_memory.py -------------------------------------------------------------------------------- /tests/unit/main_loop/test_main_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/main_loop/test_main_loop.py -------------------------------------------------------------------------------- /tests/unit/network/test__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/network/test__init__.py -------------------------------------------------------------------------------- /tests/unit/network/test_graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/network/test_graphql.py -------------------------------------------------------------------------------- /tests/unit/network/test_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/network/test_multi.py -------------------------------------------------------------------------------- /tests/unit/network/test_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/network/test_publisher.py -------------------------------------------------------------------------------- /tests/unit/network/test_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/network/test_scan.py -------------------------------------------------------------------------------- /tests/unit/network/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/network/test_schema.py -------------------------------------------------------------------------------- /tests/unit/network/test_subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/network/test_subscriber.py -------------------------------------------------------------------------------- /tests/unit/option_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/option_parsers.py -------------------------------------------------------------------------------- /tests/unit/parsec/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/parsec/conftest.py -------------------------------------------------------------------------------- /tests/unit/parsec/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/parsec/test_config.py -------------------------------------------------------------------------------- /tests/unit/parsec/test_config_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/parsec/test_config_node.py -------------------------------------------------------------------------------- /tests/unit/parsec/test_dict_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/parsec/test_dict_tree.py -------------------------------------------------------------------------------- /tests/unit/parsec/test_fileparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/parsec/test_fileparse.py -------------------------------------------------------------------------------- /tests/unit/parsec/test_include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/parsec/test_include.py -------------------------------------------------------------------------------- /tests/unit/parsec/test_jinja2support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/parsec/test_jinja2support.py -------------------------------------------------------------------------------- /tests/unit/parsec/test_ordered_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/parsec/test_ordered_dict.py -------------------------------------------------------------------------------- /tests/unit/parsec/test_parsec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/parsec/test_parsec.py -------------------------------------------------------------------------------- /tests/unit/parsec/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/parsec/test_types.py -------------------------------------------------------------------------------- /tests/unit/parsec/test_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/parsec/test_upgrade.py -------------------------------------------------------------------------------- /tests/unit/parsec/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/parsec/test_util.py -------------------------------------------------------------------------------- /tests/unit/parsec/test_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/parsec/test_validate.py -------------------------------------------------------------------------------- /tests/unit/run_modes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/run_modes/test_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/run_modes/test_dummy.py -------------------------------------------------------------------------------- /tests/unit/run_modes/test_run_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/run_modes/test_run_modes.py -------------------------------------------------------------------------------- /tests/unit/run_modes/test_skip_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/run_modes/test_skip_units.py -------------------------------------------------------------------------------- /tests/unit/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/scripts/__init__.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_cat_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/scripts/test_cat_log.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/scripts/test_clean.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/scripts/test_config.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_cylc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/scripts/test_cylc.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/scripts/test_graph.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_hold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/scripts/test_hold.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/scripts/test_install.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/scripts/test_lint.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_reinstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/scripts/test_reinstall.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/scripts/test_release.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/scripts/test_scan.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/scripts/test_stop.py -------------------------------------------------------------------------------- /tests/unit/scripts/test_validate.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_async_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_async_util.py -------------------------------------------------------------------------------- /tests/unit/test_c3mro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_c3mro.py -------------------------------------------------------------------------------- /tests/unit/test_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_clean.py -------------------------------------------------------------------------------- /tests/unit/test_command_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_command_validation.py -------------------------------------------------------------------------------- /tests/unit/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_config.py -------------------------------------------------------------------------------- /tests/unit/test_config_upgrader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_config_upgrader.py -------------------------------------------------------------------------------- /tests/unit/test_context_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_context_node.py -------------------------------------------------------------------------------- /tests/unit/test_cylc_subproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_cylc_subproc.py -------------------------------------------------------------------------------- /tests/unit/test_data_store_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_data_store_mgr.py -------------------------------------------------------------------------------- /tests/unit/test_db_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_db_compat.py -------------------------------------------------------------------------------- /tests/unit/test_dbstatecheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_dbstatecheck.py -------------------------------------------------------------------------------- /tests/unit/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_exceptions.py -------------------------------------------------------------------------------- /tests/unit/test_flow_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_flow_mgr.py -------------------------------------------------------------------------------- /tests/unit/test_graph_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_graph_parser.py -------------------------------------------------------------------------------- /tests/unit/test_host_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_host_select.py -------------------------------------------------------------------------------- /tests/unit/test_host_select_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_host_select_remote.py -------------------------------------------------------------------------------- /tests/unit/test_hostuserutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_hostuserutil.py -------------------------------------------------------------------------------- /tests/unit/test_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_id.py -------------------------------------------------------------------------------- /tests/unit/test_id_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_id_cli.py -------------------------------------------------------------------------------- /tests/unit/test_id_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_id_match.py -------------------------------------------------------------------------------- /tests/unit/test_indep_task_queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_indep_task_queues.py -------------------------------------------------------------------------------- /tests/unit/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_install.py -------------------------------------------------------------------------------- /tests/unit/test_job_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_job_file.py -------------------------------------------------------------------------------- /tests/unit/test_job_runner_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_job_runner_mgr.py -------------------------------------------------------------------------------- /tests/unit/test_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_links.py -------------------------------------------------------------------------------- /tests/unit/test_loggingutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_loggingutil.py -------------------------------------------------------------------------------- /tests/unit/test_option_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_option_parsers.py -------------------------------------------------------------------------------- /tests/unit/test_param_expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_param_expand.py -------------------------------------------------------------------------------- /tests/unit/test_pathutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_pathutil.py -------------------------------------------------------------------------------- /tests/unit/test_pbs_multi_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_pbs_multi_cluster.py -------------------------------------------------------------------------------- /tests/unit/test_pipe_poller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_pipe_poller.py -------------------------------------------------------------------------------- /tests/unit/test_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_platforms.py -------------------------------------------------------------------------------- /tests/unit/test_platforms_get_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_platforms_get_host.py -------------------------------------------------------------------------------- /tests/unit/test_prerequisite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_prerequisite.py -------------------------------------------------------------------------------- /tests/unit/test_psutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_psutil.py -------------------------------------------------------------------------------- /tests/unit/test_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_remote.py -------------------------------------------------------------------------------- /tests/unit/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_resources.py -------------------------------------------------------------------------------- /tests/unit/test_rundb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_rundb.py -------------------------------------------------------------------------------- /tests/unit/test_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_scheduler.py -------------------------------------------------------------------------------- /tests/unit/test_scheduler_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_scheduler_cli.py -------------------------------------------------------------------------------- /tests/unit/test_subprocpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_subprocpool.py -------------------------------------------------------------------------------- /tests/unit/test_syntax_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_syntax_generator.py -------------------------------------------------------------------------------- /tests/unit/test_task_events_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_task_events_mgr.py -------------------------------------------------------------------------------- /tests/unit/test_task_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_task_id.py -------------------------------------------------------------------------------- /tests/unit/test_task_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_task_message.py -------------------------------------------------------------------------------- /tests/unit/test_task_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_task_outputs.py -------------------------------------------------------------------------------- /tests/unit/test_task_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_task_pool.py -------------------------------------------------------------------------------- /tests/unit/test_task_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_task_proxy.py -------------------------------------------------------------------------------- /tests/unit/test_task_remote_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_task_remote_cmd.py -------------------------------------------------------------------------------- /tests/unit/test_task_remote_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_task_remote_mgr.py -------------------------------------------------------------------------------- /tests/unit/test_task_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_task_state.py -------------------------------------------------------------------------------- /tests/unit/test_task_state_prop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_task_state_prop.py -------------------------------------------------------------------------------- /tests/unit/test_task_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_task_trigger.py -------------------------------------------------------------------------------- /tests/unit/test_taskdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_taskdef.py -------------------------------------------------------------------------------- /tests/unit/test_templatevars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_templatevars.py -------------------------------------------------------------------------------- /tests/unit/test_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_terminal.py -------------------------------------------------------------------------------- /tests/unit/test_time_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_time_parser.py -------------------------------------------------------------------------------- /tests/unit/test_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_timer.py -------------------------------------------------------------------------------- /tests/unit/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_util.py -------------------------------------------------------------------------------- /tests/unit/test_wallclock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_wallclock.py -------------------------------------------------------------------------------- /tests/unit/test_workflow_db_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_workflow_db_mgr.py -------------------------------------------------------------------------------- /tests/unit/test_workflow_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_workflow_events.py -------------------------------------------------------------------------------- /tests/unit/test_workflow_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_workflow_files.py -------------------------------------------------------------------------------- /tests/unit/test_workflow_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_workflow_status.py -------------------------------------------------------------------------------- /tests/unit/test_xtrigger_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/test_xtrigger_mgr.py -------------------------------------------------------------------------------- /tests/unit/tui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/tui/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/tui/test_data.py -------------------------------------------------------------------------------- /tests/unit/tui/test_overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/tui/test_overlay.py -------------------------------------------------------------------------------- /tests/unit/tui/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/tui/test_util.py -------------------------------------------------------------------------------- /tests/unit/xtriggers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/xtriggers/test_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/xtriggers/test_echo.py -------------------------------------------------------------------------------- /tests/unit/xtriggers/test_wall_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/xtriggers/test_wall_clock.py -------------------------------------------------------------------------------- /tests/unit/xtriggers/test_xrandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tests/unit/xtriggers/test_xrandom.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cylc/cylc-flow/HEAD/tox.ini --------------------------------------------------------------------------------