Building Test (buildtest build
)
This reference guide will get you familiar with buildtest command line interface. Once you complete this section, you can proceed to writing buildspecs section where we will cover how to write buildspecs.
When you clone buildtest, you also get a set of buildspecs that you can run on your
system. The buildtest build
command is used for building and running tests.
Buildtest will read one or more buildspecs file that adheres to one of the
buildtest schemas. For a complete list of build options please run buildtest build --help
.
Note
buildtest bd
is an alias for buildtest build
command.
Build Usage
buildtest build --help
$ buildtest build --help
usage: buildtest [options] [COMMANDS] build [-h] [-b BUILDSPEC] [-x EXCLUDE]
[-n NAME] [-e EXECUTOR]
[-xt EXCLUDE_TAGS] [-t TAGS]
[--rerun] [-f FILTER]
[--helpfilter] [-et {local,batch}]
[--module-purge] [-m MODULES]
[-u UNLOAD_MODULES]
[--account ACCOUNT]
[--maxpendtime MAXPENDTIME]
[--pollinterval POLLINTERVAL]
[--procs PROCS [PROCS ...]]
[--nodes NODES [NODES ...]]
[--display {output,test}]
[--dry-run] [--limit LIMIT]
[--max-jobs MAX_JOBS]
[--profile PROFILE]
[--remove-stagedir]
[--rebuild REBUILD]
[--retry RETRY]
[--save-profile SAVE_PROFILE]
[--strict] [--testdir TESTDIR]
[--timeout TIMEOUT] [--validate]
[--write-config-file WRITE_CONFIG_FILE]
optional arguments:
-h, --help show this help message and exit
discover:
Select buildspec file to run based on file, tag, executor
-b BUILDSPEC, --buildspec BUILDSPEC
Specify a buildspec (file or directory) to build. A
buildspec must end in '.yml' extension.
-x EXCLUDE, --exclude EXCLUDE
Exclude one or more buildspecs (file or directory)
from processing. A buildspec must end in '.yml'
extension.
-n NAME, --name NAME Specify a name of test to run
-e EXECUTOR, --executor EXECUTOR
Discover buildspecs by executor name found in
buildspec cache
-xt EXCLUDE_TAGS, --exclude-tags EXCLUDE_TAGS
Exclude tests by one or more tagnames found in
buildspec cache
-t TAGS, --tags TAGS Discover buildspecs by tags found in buildspec cache
--rerun Rerun last successful buildtest build command.
filter:
Filter tests after selection
-f FILTER, --filter FILTER
Filter buildspec based on tags, type, or maintainers.
Usage: --filter
key1=val1,val2;key2=val3;key3=val4,val5
--helpfilter Show available filter fields used with --filter option
-et {local,batch}, --executor-type {local,batch}
Filter tests by executor type (local, batch)
module:
Module Selection option
--module-purge Run 'module purge' before running any test
-m MODULES, --modules MODULES
Specify a list of modules to load during test
execution, to specify multiple modules each one must
be comma separated for instance if you want to load
'gcc' and 'python' module you can do '-m gcc,python'
-u UNLOAD_MODULES, --unload-modules UNLOAD_MODULES
Specify a list of modules to unload during test
execution
batch:
Batch Submission options
--account ACCOUNT Specify project account used to charge batch jobs
(applicable for batch jobs only)
--maxpendtime MAXPENDTIME
Specify Maximum Pending Time (sec) for job before
cancelling job. This only applies for batch job
submission.
--pollinterval POLLINTERVAL
Specify Poll Interval (sec) for polling batch jobs
--procs PROCS [PROCS ...]
Specify number of processes to run tests (only
applicable with batch jobs). Multiple values can be
specified comma separated.
--nodes NODES [NODES ...]
Specify number of nodes to run tests (only applicable
with batch jobs). Multiple values can be specified
comma separated.
extra:
All extra options
--display {output,test}
Display content of output/error or test
--dry-run Show a list of tests that will potentially be run
without actually running them.
--limit LIMIT Limit number of tests that can be run.
--max-jobs MAX_JOBS Maximum number of jobs that can be run concurrently.
--profile PROFILE Specify a profile to load from configuration file
--remove-stagedir Remove stage directory after job completion.
--rebuild REBUILD Rebuild test X number of times. Must be a positive
number between [1-50]
--retry RETRY Retry failed jobs
--save-profile SAVE_PROFILE
Save buildtest command options into a profile and
update configuration file
--strict Enable strict mode for test by setting 'set -eo
pipefail' in test script
--testdir TESTDIR Specify a custom test directory where to write tests.
This overrides configuration file and default
location.
--timeout TIMEOUT Specify test timeout in number of seconds
--validate Validate given buildspecs and control behavior of
buildtest build to stop execution after parsing the
YAML files.
--write-config-file WRITE_CONFIG_FILE
Specify path to configuration file to write changes
when saving profile
Building a Test (buildtest build --buildspec
)
To build a test, we use the --buildspec
or short option -b
to specify the
path to buildspec file. Let’s see some examples, first we specify a full path to buildspec file.
In this example, buildtest will discover buildspecs followed by
parsing the test with appropriate schema and generate a shell script that is run
by buildtest. You can learn more about build and test process.
buildtest build -b $BUILDTEST_ROOT/tutorials/vars.yml
$ buildtest build -b $BUILDTEST_ROOT/tutorials/vars.yml
Buildspec Paths: ['/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials', '/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/general_tests']
Updating buildspec cache file: /tmp/tmpr88132k2/var/buildspecs/cache.json
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:33:10 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/vars.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/vars.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variable │ script │ generic. │ None │ None │ None │ Declare │ /home/d │
│ s_bash/1 │ │ local.ba │ │ │ │ shell │ ocs/che │
│ 36a82f6 │ │ sh │ │ │ │ variable │ ckouts/ │
│ │ │ │ │ │ │ s in │ readthe │
│ │ │ │ │ │ │ bash │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/vars. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
variables_bash/136a82f6: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/136a82f6
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/136a82f6 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ variables_bash/136a82f6 │
└─────────────────────────┘
variables_bash/136a82f6: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/136a82f6/stage
variables_bash/136a82f6: Running Test via command: bash variables_bash_build.sh
variables_bash/136a82f6: Test completed in 0.01711 seconds with returncode: 0
variables_bash/136a82f6: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/136a82f6/variables_bash.out
variables_bash/136a82f6: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/136a82f6/variables_bash.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ variables_bash/136a82f6 │ generic.local.bash │ PASS │ 0 │ 0.017 │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%
Adding 1 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_ctd07imv.log
Note
buildtest will only read buildspecs with .yml
extension, if you specify a
.yaml
it will be ignored by buildtest.
The --buildspec
option can be used to specify a file or directory path. If you want
to build multiple buildspecs in a directory you can specify the directory path
and buildtest will recursively search for all .yml
files. In the next example,
we build all tests in directory general_tests/configuration.
buildtest build -b $BUILDTEST_ROOT/general_tests/configuration/
$ buildtest build -b $BUILDTEST_ROOT/general_tests/configuration/
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:34:30 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/kernel_state.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/systemd-default-target.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/ulimits.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/disk_usage.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 4 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 4
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 4
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 4
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/general_tests/configuration/kernel_state.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/general_tests/configuration/systemd-default-target.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/general_tests/configuration/ulimits.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/general_tests/configuration/disk_usage.yml: VALID
Total builder objects created: 9
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ kernel_s │ script │ generic. │ None │ None │ None │ Retrieve │ /home/d │
│ wapusage │ │ local.ba │ │ │ │ Kernel │ ocs/che │
│ /59bb896 │ │ sh │ │ │ │ Swap │ ckouts/ │
│ 9 │ │ │ │ │ │ Usage │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/k │
│ │ │ │ │ │ │ │ ernel_s │
│ │ │ │ │ │ │ │ tate.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ systemd_ │ script │ generic. │ None │ None │ None │ check if │ /home/d │
│ default_ │ │ local.ba │ │ │ │ default │ ocs/che │
│ target/9 │ │ sh │ │ │ │ target │ ckouts/ │
│ afcbd19 │ │ │ │ │ │ is │ readthe │
│ │ │ │ │ │ │ multi-us │ docs.or │
│ │ │ │ │ │ │ er.targe │ g/user_ │
│ │ │ │ │ │ │ t │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/s │
│ │ │ │ │ │ │ │ ystemd- │
│ │ │ │ │ │ │ │ default │
│ │ │ │ │ │ │ │ -target │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_f │ script │ generic. │ None │ None │ None │ Check if │ /home/d │
│ ilelock_ │ │ local.ba │ │ │ │ file │ ocs/che │
│ unlimite │ │ sh │ │ │ │ lock is │ ckouts/ │
│ d/9df96b │ │ │ │ │ │ set to │ readthe │
│ d8 │ │ │ │ │ │ unlimite │ docs.or │
│ │ │ │ │ │ │ d in │ g/user_ │
│ │ │ │ │ │ │ ulimits │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/u │
│ │ │ │ │ │ │ │ limits. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_c │ script │ generic. │ None │ None │ None │ Check if │ /home/d │
│ putime_u │ │ local.ba │ │ │ │ cputime │ ocs/che │
│ nlimited │ │ sh │ │ │ │ is set │ ckouts/ │
│ /56c91a0 │ │ │ │ │ │ to │ readthe │
│ 9 │ │ │ │ │ │ unlimite │ docs.or │
│ │ │ │ │ │ │ d in │ g/user_ │
│ │ │ │ │ │ │ ulimits │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/u │
│ │ │ │ │ │ │ │ limits. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_s │ script │ generic. │ None │ None │ None │ Check if │ /home/d │
│ tacksize │ │ local.ba │ │ │ │ stack │ ocs/che │
│ _unlimit │ │ sh │ │ │ │ size is │ ckouts/ │
│ ed/6d759 │ │ │ │ │ │ set to │ readthe │
│ 512 │ │ │ │ │ │ unlimite │ docs.or │
│ │ │ │ │ │ │ d in │ g/user_ │
│ │ │ │ │ │ │ ulimits │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/u │
│ │ │ │ │ │ │ │ limits. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_v │ script │ generic. │ None │ None │ None │ Check │ /home/d │
│ msize_un │ │ local.ba │ │ │ │ virtual │ ocs/che │
│ limited/ │ │ sh │ │ │ │ memory │ ckouts/ │
│ 6eb786b9 │ │ │ │ │ │ size and │ readthe │
│ │ │ │ │ │ │ check if │ docs.or │
│ │ │ │ │ │ │ its set │ g/user_ │
│ │ │ │ │ │ │ to │ builds/ │
│ │ │ │ │ │ │ unlimite │ buildte │
│ │ │ │ │ │ │ d │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/u │
│ │ │ │ │ │ │ │ limits. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_f │ script │ generic. │ None │ None │ None │ Check if │ /home/d │
│ iledescr │ │ local.ba │ │ │ │ open │ ocs/che │
│ iptor_40 │ │ sh │ │ │ │ file │ ckouts/ │
│ 96/a82da │ │ │ │ │ │ descript │ readthe │
│ a81 │ │ │ │ │ │ ors │ docs.or │
│ │ │ │ │ │ │ limit is │ g/user_ │
│ │ │ │ │ │ │ set to │ builds/ │
│ │ │ │ │ │ │ 4096 │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/u │
│ │ │ │ │ │ │ │ limits. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_m │ script │ generic. │ None │ None │ None │ Check │ /home/d │
│ ax_user_ │ │ local.ba │ │ │ │ max │ ocs/che │
│ process_ │ │ sh │ │ │ │ number │ ckouts/ │
│ 2048/f97 │ │ │ │ │ │ of user │ readthe │
│ 8e32e │ │ │ │ │ │ process │ docs.or │
│ │ │ │ │ │ │ limit is │ g/user_ │
│ │ │ │ │ │ │ set to │ builds/ │
│ │ │ │ │ │ │ 2048 │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/u │
│ │ │ │ │ │ │ │ limits. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ root_dis │ script │ generic. │ None │ None │ None │ Check │ /home/d │
│ k_usage/ │ │ local.ba │ │ │ │ root │ ocs/che │
│ 009f7817 │ │ sh │ │ │ │ disk │ ckouts/ │
│ │ │ │ │ │ │ usage │ readthe │
│ │ │ │ │ │ │ and │ docs.or │
│ │ │ │ │ │ │ report │ g/user_ │
│ │ │ │ │ │ │ if it │ builds/ │
│ │ │ │ │ │ │ exceeds │ buildte │
│ │ │ │ │ │ │ threshol │ st/chec │
│ │ │ │ │ │ │ d │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/d │
│ │ │ │ │ │ │ │ isk_usa │
│ │ │ │ │ │ │ │ ge.yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
kernel_swapusage/59bb8969: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/kernel_state/kernel_swapusage/59bb8969
systemd_default_target/9afcbd19: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/9afcbd19
ulimit_filelock_unlimited/9df96bd8: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/9df96bd8
ulimit_cputime_unlimited/56c91a09: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/56c91a09
ulimit_stacksize_unlimited/6d759512: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/6d759512
ulimit_vmsize_unlimited/6eb786b9: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/6eb786b9
ulimit_filedescriptor_4096/a82daa81: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/a82daa81
ulimit_max_user_process_2048/f978e32e: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/f978e32e
root_disk_usage/009f7817: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/disk_usage/root_disk_usage/009f7817
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
systemd_default_target/9afcbd19 does not have any dependencies adding test to queue
ulimit_cputime_unlimited/56c91a09 does not have any dependencies adding test to queue
kernel_swapusage/59bb8969 does not have any dependencies adding test to queue
ulimit_max_user_process_2048/f978e32e does not have any dependencies adding test to queue
ulimit_stacksize_unlimited/6d759512 does not have any dependencies adding test to queue
ulimit_filelock_unlimited/9df96bd8 does not have any dependencies adding test to queue
root_disk_usage/009f7817 does not have any dependencies adding test to queue
ulimit_vmsize_unlimited/6eb786b9 does not have any dependencies adding test to queue
ulimit_filedescriptor_4096/a82daa81 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ systemd_default_target/9afcbd19 │
│ ulimit_cputime_unlimited/56c91a09 │
│ ulimit_max_user_process_2048/f978e32e │
│ kernel_swapusage/59bb8969 │
│ ulimit_stacksize_unlimited/6d759512 │
│ ulimit_filelock_unlimited/9df96bd8 │
│ root_disk_usage/009f7817 │
│ ulimit_vmsize_unlimited/6eb786b9 │
│ ulimit_filedescriptor_4096/a82daa81 │
└───────────────────────────────────────┘
systemd_default_target/9afcbd19: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/9afcbd19/stage
systemd_default_target/9afcbd19: Running Test via command: bash systemd_default_target_build.sh
systemd_default_target/9afcbd19: failed to submit job with returncode: 1
systemd_default_target/9afcbd19: Detected failure in running test, will attempt to retry test: 1 times
systemd_default_target/9afcbd19: Run - 1/1
systemd_default_target/9afcbd19: Running Test via command: bash systemd_default_target_build.sh
systemd_default_target/9afcbd19: failed to submit job with returncode: 1
systemd_default_target/9afcbd19: Test completed in 0.029258 seconds with returncode: 1
systemd_default_target/9afcbd19: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/9afcbd19/systemd_default_target.out
systemd_default_target/9afcbd19: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/9afcbd19/systemd_default_target.err
ulimit_cputime_unlimited/56c91a09: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/56c91a09/stage
ulimit_cputime_unlimited/56c91a09: Running Test via command: bash ulimit_cputime_unlimited_build.sh
ulimit_cputime_unlimited/56c91a09: Test completed in 0.008783 seconds with returncode: 0
ulimit_cputime_unlimited/56c91a09: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/56c91a09/ulimit_cputime_unlimited.out
ulimit_cputime_unlimited/56c91a09: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/56c91a09/ulimit_cputime_unlimited.err
ulimit_cputime_unlimited/56c91a09: performing regular expression - '^unlimited$' on file: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/56c91a09/ulimit_cputime_unlimited.out
ulimit_cputime_unlimited/56c91a09: Regular Expression Match - Success!
ulimit_max_user_process_2048/f978e32e: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/f978e32e/stage
ulimit_max_user_process_2048/f978e32e: Running Test via command: bash ulimit_max_user_process_2048_build.sh
ulimit_max_user_process_2048/f978e32e: Test completed in 0.008662 seconds with returncode: 0
ulimit_max_user_process_2048/f978e32e: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/f978e32e/ulimit_max_user_process_2048.out
ulimit_max_user_process_2048/f978e32e: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/f978e32e/ulimit_max_user_process_2048.err
ulimit_max_user_process_2048/f978e32e: performing regular expression - '^2048$' on file: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/f978e32e/ulimit_max_user_process_2048.out
ulimit_max_user_process_2048/f978e32e: Regular Expression Match - Failed!
kernel_swapusage/59bb8969: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/kernel_state/kernel_swapusage/59bb8969/stage
kernel_swapusage/59bb8969: Running Test via command: bash kernel_swapusage_build.sh
kernel_swapusage/59bb8969: failed to submit job with returncode: 255
kernel_swapusage/59bb8969: Detected failure in running test, will attempt to retry test: 1 times
kernel_swapusage/59bb8969: Run - 1/1
kernel_swapusage/59bb8969: Running Test via command: bash kernel_swapusage_build.sh
kernel_swapusage/59bb8969: failed to submit job with returncode: 255
kernel_swapusage/59bb8969: Test completed in 0.025824 seconds with returncode: 255
kernel_swapusage/59bb8969: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/kernel_state/kernel_swapusage/59bb8969/kernel_swapusage.out
kernel_swapusage/59bb8969: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/kernel_state/kernel_swapusage/59bb8969/kernel_swapusage.err
ulimit_stacksize_unlimited/6d759512: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/6d759512/stage
ulimit_stacksize_unlimited/6d759512: Running Test via command: bash ulimit_stacksize_unlimited_build.sh
ulimit_stacksize_unlimited/6d759512: Test completed in 0.009054 seconds with returncode: 0
ulimit_stacksize_unlimited/6d759512: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/6d759512/ulimit_stacksize_unlimited.out
ulimit_stacksize_unlimited/6d759512: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/6d759512/ulimit_stacksize_unlimited.err
ulimit_stacksize_unlimited/6d759512: performing regular expression - '^unlimited$' on file: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/6d759512/ulimit_stacksize_unlimited.out
ulimit_stacksize_unlimited/6d759512: Regular Expression Match - Failed!
ulimit_filelock_unlimited/9df96bd8: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/9df96bd8/stage
ulimit_filelock_unlimited/9df96bd8: Running Test via command: bash ulimit_filelock_unlimited_build.sh
ulimit_filelock_unlimited/9df96bd8: Test completed in 0.00902 seconds with returncode: 0
ulimit_filelock_unlimited/9df96bd8: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/9df96bd8/ulimit_filelock_unlimited.out
ulimit_filelock_unlimited/9df96bd8: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/9df96bd8/ulimit_filelock_unlimited.err
ulimit_filelock_unlimited/9df96bd8: performing regular expression - '^unlimited$' on file: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/9df96bd8/ulimit_filelock_unlimited.out
ulimit_filelock_unlimited/9df96bd8: Regular Expression Match - Success!
root_disk_usage/009f7817: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/disk_usage/root_disk_usage/009f7817/stage
root_disk_usage/009f7817: Running Test via command: bash root_disk_usage_build.sh
root_disk_usage/009f7817: Test completed in 0.01681 seconds with returncode: 0
root_disk_usage/009f7817: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/disk_usage/root_disk_usage/009f7817/root_disk_usage.out
root_disk_usage/009f7817: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/disk_usage/root_disk_usage/009f7817/root_disk_usage.err
ulimit_vmsize_unlimited/6eb786b9: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/6eb786b9/stage
ulimit_vmsize_unlimited/6eb786b9: Running Test via command: bash ulimit_vmsize_unlimited_build.sh
ulimit_vmsize_unlimited/6eb786b9: Test completed in 0.009558 seconds with returncode: 0
ulimit_vmsize_unlimited/6eb786b9: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/6eb786b9/ulimit_vmsize_unlimited.out
ulimit_vmsize_unlimited/6eb786b9: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/6eb786b9/ulimit_vmsize_unlimited.err
ulimit_vmsize_unlimited/6eb786b9: performing regular expression - '^unlimited$' on file: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/6eb786b9/ulimit_vmsize_unlimited.out
ulimit_vmsize_unlimited/6eb786b9: Regular Expression Match - Success!
ulimit_filedescriptor_4096/a82daa81: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/a82daa81/stage
ulimit_filedescriptor_4096/a82daa81: Running Test via command: bash ulimit_filedescriptor_4096_build.sh
ulimit_filedescriptor_4096/a82daa81: Test completed in 0.009192 seconds with returncode: 0
ulimit_filedescriptor_4096/a82daa81: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/a82daa81/ulimit_filedescriptor_4096.out
ulimit_filedescriptor_4096/a82daa81: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/a82daa81/ulimit_filedescriptor_4096.err
ulimit_filedescriptor_4096/a82daa81: performing regular expression - '^4096$' on file: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/a82daa81/ulimit_filedescriptor_4096.out
ulimit_filedescriptor_4096/a82daa81: Regular Expression Match - Failed!
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ ulimit_filedescriptor_4 │ generic.local.bash │ FAIL │ 0 │ 0.009 │
│ 096/a82daa81 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_stacksize_unlimi │ generic.local.bash │ FAIL │ 0 │ 0.009 │
│ ted/6d759512 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ root_disk_usage/009f781 │ generic.local.bash │ PASS │ 0 │ 0.017 │
│ 7 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_vmsize_unlimited │ generic.local.bash │ PASS │ 0 │ 0.010 │
│ /6eb786b9 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_cputime_unlimite │ generic.local.bash │ PASS │ 0 │ 0.009 │
│ d/56c91a09 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_filelock_unlimit │ generic.local.bash │ PASS │ 0 │ 0.009 │
│ ed/9df96bd8 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_max_user_process │ generic.local.bash │ FAIL │ 0 │ 0.009 │
│ _2048/f978e32e │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ systemd_default_target/ │ generic.local.bash │ FAIL │ 1 │ 0.029 │
│ 9afcbd19 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ kernel_swapusage/59bb89 │ generic.local.bash │ FAIL │ 255 │ 0.026 │
│ 69 │ │ │ │ │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 4/9 Percentage: 44.444%
Failed Tests: 5/9 Percentage: 55.556%
Adding 9 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_4fy7mcat.log
Building Multiple Buildspecs
You can append -b
option to build multiple buildspecs in the same
command. Buildtest will discover buildspecs for every argument (-b
) and accumulate
a list of buildspecs to run. In this example, we instruct buildtest to build
a buildspec file and all buildspecs in a directory path.
buildtest build -b $BUILDTEST_ROOT/general_tests/configuration/ -b $BUILDTEST_ROOT/tutorials/vars.yml
$ buildtest build -b $BUILDTEST_ROOT/general_tests/configuration/ -b $BUILDTEST_ROOT/tutorials/vars.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:34:31 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/kernel_state.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/ulimits.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/systemd-default-target.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/disk_usage.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/vars.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 5 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 5
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 5
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 5
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/general_tests/configuration/kernel_state.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/general_tests/configuration/ulimits.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/general_tests/configuration/systemd-default-target.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/general_tests/configuration/disk_usage.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/vars.yml: VALID
Total builder objects created: 10
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ kernel_s │ script │ generic. │ None │ None │ None │ Retrieve │ /home/d │
│ wapusage │ │ local.ba │ │ │ │ Kernel │ ocs/che │
│ /a9d0b51 │ │ sh │ │ │ │ Swap │ ckouts/ │
│ 0 │ │ │ │ │ │ Usage │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/k │
│ │ │ │ │ │ │ │ ernel_s │
│ │ │ │ │ │ │ │ tate.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_f │ script │ generic. │ None │ None │ None │ Check if │ /home/d │
│ ilelock_ │ │ local.ba │ │ │ │ file │ ocs/che │
│ unlimite │ │ sh │ │ │ │ lock is │ ckouts/ │
│ d/934ea4 │ │ │ │ │ │ set to │ readthe │
│ c1 │ │ │ │ │ │ unlimite │ docs.or │
│ │ │ │ │ │ │ d in │ g/user_ │
│ │ │ │ │ │ │ ulimits │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/u │
│ │ │ │ │ │ │ │ limits. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_c │ script │ generic. │ None │ None │ None │ Check if │ /home/d │
│ putime_u │ │ local.ba │ │ │ │ cputime │ ocs/che │
│ nlimited │ │ sh │ │ │ │ is set │ ckouts/ │
│ /cfb440b │ │ │ │ │ │ to │ readthe │
│ b │ │ │ │ │ │ unlimite │ docs.or │
│ │ │ │ │ │ │ d in │ g/user_ │
│ │ │ │ │ │ │ ulimits │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/u │
│ │ │ │ │ │ │ │ limits. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_s │ script │ generic. │ None │ None │ None │ Check if │ /home/d │
│ tacksize │ │ local.ba │ │ │ │ stack │ ocs/che │
│ _unlimit │ │ sh │ │ │ │ size is │ ckouts/ │
│ ed/e7971 │ │ │ │ │ │ set to │ readthe │
│ 401 │ │ │ │ │ │ unlimite │ docs.or │
│ │ │ │ │ │ │ d in │ g/user_ │
│ │ │ │ │ │ │ ulimits │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/u │
│ │ │ │ │ │ │ │ limits. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_v │ script │ generic. │ None │ None │ None │ Check │ /home/d │
│ msize_un │ │ local.ba │ │ │ │ virtual │ ocs/che │
│ limited/ │ │ sh │ │ │ │ memory │ ckouts/ │
│ baaf3ac0 │ │ │ │ │ │ size and │ readthe │
│ │ │ │ │ │ │ check if │ docs.or │
│ │ │ │ │ │ │ its set │ g/user_ │
│ │ │ │ │ │ │ to │ builds/ │
│ │ │ │ │ │ │ unlimite │ buildte │
│ │ │ │ │ │ │ d │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/u │
│ │ │ │ │ │ │ │ limits. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_f │ script │ generic. │ None │ None │ None │ Check if │ /home/d │
│ iledescr │ │ local.ba │ │ │ │ open │ ocs/che │
│ iptor_40 │ │ sh │ │ │ │ file │ ckouts/ │
│ 96/80114 │ │ │ │ │ │ descript │ readthe │
│ be3 │ │ │ │ │ │ ors │ docs.or │
│ │ │ │ │ │ │ limit is │ g/user_ │
│ │ │ │ │ │ │ set to │ builds/ │
│ │ │ │ │ │ │ 4096 │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/u │
│ │ │ │ │ │ │ │ limits. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_m │ script │ generic. │ None │ None │ None │ Check │ /home/d │
│ ax_user_ │ │ local.ba │ │ │ │ max │ ocs/che │
│ process_ │ │ sh │ │ │ │ number │ ckouts/ │
│ 2048/fce │ │ │ │ │ │ of user │ readthe │
│ 2c6a9 │ │ │ │ │ │ process │ docs.or │
│ │ │ │ │ │ │ limit is │ g/user_ │
│ │ │ │ │ │ │ set to │ builds/ │
│ │ │ │ │ │ │ 2048 │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/u │
│ │ │ │ │ │ │ │ limits. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ systemd_ │ script │ generic. │ None │ None │ None │ check if │ /home/d │
│ default_ │ │ local.ba │ │ │ │ default │ ocs/che │
│ target/7 │ │ sh │ │ │ │ target │ ckouts/ │
│ 794a73d │ │ │ │ │ │ is │ readthe │
│ │ │ │ │ │ │ multi-us │ docs.or │
│ │ │ │ │ │ │ er.targe │ g/user_ │
│ │ │ │ │ │ │ t │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/s │
│ │ │ │ │ │ │ │ ystemd- │
│ │ │ │ │ │ │ │ default │
│ │ │ │ │ │ │ │ -target │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ root_dis │ script │ generic. │ None │ None │ None │ Check │ /home/d │
│ k_usage/ │ │ local.ba │ │ │ │ root │ ocs/che │
│ 68929e69 │ │ sh │ │ │ │ disk │ ckouts/ │
│ │ │ │ │ │ │ usage │ readthe │
│ │ │ │ │ │ │ and │ docs.or │
│ │ │ │ │ │ │ report │ g/user_ │
│ │ │ │ │ │ │ if it │ builds/ │
│ │ │ │ │ │ │ exceeds │ buildte │
│ │ │ │ │ │ │ threshol │ st/chec │
│ │ │ │ │ │ │ d │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/d │
│ │ │ │ │ │ │ │ isk_usa │
│ │ │ │ │ │ │ │ ge.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ variable │ script │ generic. │ None │ None │ None │ Declare │ /home/d │
│ s_bash/0 │ │ local.ba │ │ │ │ shell │ ocs/che │
│ 16ed495 │ │ sh │ │ │ │ variable │ ckouts/ │
│ │ │ │ │ │ │ s in │ readthe │
│ │ │ │ │ │ │ bash │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/vars. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
kernel_swapusage/a9d0b510: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/kernel_state/kernel_swapusage/a9d0b510
ulimit_filelock_unlimited/934ea4c1: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/934ea4c1
ulimit_cputime_unlimited/cfb440bb: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/cfb440bb
ulimit_stacksize_unlimited/e7971401: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/e7971401
ulimit_vmsize_unlimited/baaf3ac0: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/baaf3ac0
ulimit_filedescriptor_4096/80114be3: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/80114be3
ulimit_max_user_process_2048/fce2c6a9: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/fce2c6a9
systemd_default_target/7794a73d: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/7794a73d
root_disk_usage/68929e69: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/disk_usage/root_disk_usage/68929e69
variables_bash/016ed495: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/016ed495
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
ulimit_filedescriptor_4096/80114be3 does not have any dependencies adding test to queue
ulimit_stacksize_unlimited/e7971401 does not have any dependencies adding test to queue
ulimit_max_user_process_2048/fce2c6a9 does not have any dependencies adding test to queue
ulimit_cputime_unlimited/cfb440bb does not have any dependencies adding test to queue
root_disk_usage/68929e69 does not have any dependencies adding test to queue
ulimit_filelock_unlimited/934ea4c1 does not have any dependencies adding test to queue
variables_bash/016ed495 does not have any dependencies adding test to queue
systemd_default_target/7794a73d does not have any dependencies adding test to queue
ulimit_vmsize_unlimited/baaf3ac0 does not have any dependencies adding test to queue
kernel_swapusage/a9d0b510 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ ulimit_filedescriptor_4096/80114be3 │
│ ulimit_stacksize_unlimited/e7971401 │
│ ulimit_max_user_process_2048/fce2c6a9 │
│ ulimit_cputime_unlimited/cfb440bb │
│ root_disk_usage/68929e69 │
│ ulimit_filelock_unlimited/934ea4c1 │
│ variables_bash/016ed495 │
│ systemd_default_target/7794a73d │
│ ulimit_vmsize_unlimited/baaf3ac0 │
│ kernel_swapusage/a9d0b510 │
└───────────────────────────────────────┘
ulimit_filedescriptor_4096/80114be3: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/80114be3/stage
ulimit_filedescriptor_4096/80114be3: Running Test via command: bash ulimit_filedescriptor_4096_build.sh
ulimit_filedescriptor_4096/80114be3: Test completed in 0.008787 seconds with returncode: 0
ulimit_filedescriptor_4096/80114be3: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/80114be3/ulimit_filedescriptor_4096.out
ulimit_filedescriptor_4096/80114be3: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/80114be3/ulimit_filedescriptor_4096.err
ulimit_filedescriptor_4096/80114be3: performing regular expression - '^4096$' on file: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/80114be3/ulimit_filedescriptor_4096.out
ulimit_filedescriptor_4096/80114be3: Regular Expression Match - Failed!
ulimit_stacksize_unlimited/e7971401: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/e7971401/stage
ulimit_stacksize_unlimited/e7971401: Running Test via command: bash ulimit_stacksize_unlimited_build.sh
ulimit_stacksize_unlimited/e7971401: Test completed in 0.018494 seconds with returncode: 0
ulimit_stacksize_unlimited/e7971401: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/e7971401/ulimit_stacksize_unlimited.out
ulimit_stacksize_unlimited/e7971401: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/e7971401/ulimit_stacksize_unlimited.err
ulimit_stacksize_unlimited/e7971401: performing regular expression - '^unlimited$' on file: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/e7971401/ulimit_stacksize_unlimited.out
ulimit_stacksize_unlimited/e7971401: Regular Expression Match - Failed!
ulimit_max_user_process_2048/fce2c6a9: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/fce2c6a9/stage
ulimit_max_user_process_2048/fce2c6a9: Running Test via command: bash ulimit_max_user_process_2048_build.sh
ulimit_max_user_process_2048/fce2c6a9: Test completed in 0.008543 seconds with returncode: 0
ulimit_max_user_process_2048/fce2c6a9: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/fce2c6a9/ulimit_max_user_process_2048.out
ulimit_max_user_process_2048/fce2c6a9: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/fce2c6a9/ulimit_max_user_process_2048.err
ulimit_max_user_process_2048/fce2c6a9: performing regular expression - '^2048$' on file: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/fce2c6a9/ulimit_max_user_process_2048.out
ulimit_max_user_process_2048/fce2c6a9: Regular Expression Match - Failed!
ulimit_cputime_unlimited/cfb440bb: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/cfb440bb/stage
ulimit_cputime_unlimited/cfb440bb: Running Test via command: bash ulimit_cputime_unlimited_build.sh
ulimit_cputime_unlimited/cfb440bb: Test completed in 0.008534 seconds with returncode: 0
ulimit_cputime_unlimited/cfb440bb: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/cfb440bb/ulimit_cputime_unlimited.out
ulimit_cputime_unlimited/cfb440bb: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/cfb440bb/ulimit_cputime_unlimited.err
ulimit_cputime_unlimited/cfb440bb: performing regular expression - '^unlimited$' on file: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/cfb440bb/ulimit_cputime_unlimited.out
ulimit_cputime_unlimited/cfb440bb: Regular Expression Match - Success!
root_disk_usage/68929e69: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/disk_usage/root_disk_usage/68929e69/stage
root_disk_usage/68929e69: Running Test via command: bash root_disk_usage_build.sh
root_disk_usage/68929e69: Test completed in 0.01553 seconds with returncode: 0
root_disk_usage/68929e69: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/disk_usage/root_disk_usage/68929e69/root_disk_usage.out
root_disk_usage/68929e69: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/disk_usage/root_disk_usage/68929e69/root_disk_usage.err
ulimit_filelock_unlimited/934ea4c1: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/934ea4c1/stage
ulimit_filelock_unlimited/934ea4c1: Running Test via command: bash ulimit_filelock_unlimited_build.sh
ulimit_filelock_unlimited/934ea4c1: Test completed in 0.008547 seconds with returncode: 0
ulimit_filelock_unlimited/934ea4c1: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/934ea4c1/ulimit_filelock_unlimited.out
ulimit_filelock_unlimited/934ea4c1: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/934ea4c1/ulimit_filelock_unlimited.err
ulimit_filelock_unlimited/934ea4c1: performing regular expression - '^unlimited$' on file: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/934ea4c1/ulimit_filelock_unlimited.out
ulimit_filelock_unlimited/934ea4c1: Regular Expression Match - Success!
variables_bash/016ed495: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/016ed495/stage
variables_bash/016ed495: Running Test via command: bash variables_bash_build.sh
variables_bash/016ed495: Test completed in 0.016156 seconds with returncode: 0
variables_bash/016ed495: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/016ed495/variables_bash.out
variables_bash/016ed495: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/016ed495/variables_bash.err
systemd_default_target/7794a73d: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/7794a73d/stage
systemd_default_target/7794a73d: Running Test via command: bash systemd_default_target_build.sh
systemd_default_target/7794a73d: failed to submit job with returncode: 1
systemd_default_target/7794a73d: Detected failure in running test, will attempt to retry test: 1 times
systemd_default_target/7794a73d: Run - 1/1
systemd_default_target/7794a73d: Running Test via command: bash systemd_default_target_build.sh
systemd_default_target/7794a73d: failed to submit job with returncode: 1
systemd_default_target/7794a73d: Test completed in 0.028825 seconds with returncode: 1
systemd_default_target/7794a73d: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/7794a73d/systemd_default_target.out
systemd_default_target/7794a73d: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/7794a73d/systemd_default_target.err
ulimit_vmsize_unlimited/baaf3ac0: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/baaf3ac0/stage
ulimit_vmsize_unlimited/baaf3ac0: Running Test via command: bash ulimit_vmsize_unlimited_build.sh
ulimit_vmsize_unlimited/baaf3ac0: Test completed in 0.009182 seconds with returncode: 0
ulimit_vmsize_unlimited/baaf3ac0: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/baaf3ac0/ulimit_vmsize_unlimited.out
ulimit_vmsize_unlimited/baaf3ac0: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/baaf3ac0/ulimit_vmsize_unlimited.err
ulimit_vmsize_unlimited/baaf3ac0: performing regular expression - '^unlimited$' on file: /tmp/tmpr88132k2/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/baaf3ac0/ulimit_vmsize_unlimited.out
ulimit_vmsize_unlimited/baaf3ac0: Regular Expression Match - Success!
kernel_swapusage/a9d0b510: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/kernel_state/kernel_swapusage/a9d0b510/stage
kernel_swapusage/a9d0b510: Running Test via command: bash kernel_swapusage_build.sh
kernel_swapusage/a9d0b510: failed to submit job with returncode: 255
kernel_swapusage/a9d0b510: Detected failure in running test, will attempt to retry test: 1 times
kernel_swapusage/a9d0b510: Run - 1/1
kernel_swapusage/a9d0b510: Running Test via command: bash kernel_swapusage_build.sh
kernel_swapusage/a9d0b510: failed to submit job with returncode: 255
kernel_swapusage/a9d0b510: Test completed in 0.025019 seconds with returncode: 255
kernel_swapusage/a9d0b510: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/kernel_state/kernel_swapusage/a9d0b510/kernel_swapusage.out
kernel_swapusage/a9d0b510: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/kernel_state/kernel_swapusage/a9d0b510/kernel_swapusage.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ systemd_default_target/ │ generic.local.bash │ FAIL │ 1 │ 0.029 │
│ 7794a73d │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_vmsize_unlimited │ generic.local.bash │ PASS │ 0 │ 0.009 │
│ /baaf3ac0 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_max_user_process │ generic.local.bash │ FAIL │ 0 │ 0.009 │
│ _2048/fce2c6a9 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_stacksize_unlimi │ generic.local.bash │ FAIL │ 0 │ 0.018 │
│ ted/e7971401 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_filelock_unlimit │ generic.local.bash │ PASS │ 0 │ 0.009 │
│ ed/934ea4c1 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ kernel_swapusage/a9d0b5 │ generic.local.bash │ FAIL │ 255 │ 0.025 │
│ 10 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ variables_bash/016ed495 │ generic.local.bash │ PASS │ 0 │ 0.016 │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_filedescriptor_4 │ generic.local.bash │ FAIL │ 0 │ 0.009 │
│ 096/80114be3 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ root_disk_usage/68929e6 │ generic.local.bash │ PASS │ 0 │ 0.016 │
│ 9 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_cputime_unlimite │ generic.local.bash │ PASS │ 0 │ 0.009 │
│ d/cfb440bb │ │ │ │ │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 5/10 Percentage: 50.000%
Failed Tests: 5/10 Percentage: 50.000%
Adding 10 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_et5zhon3.log
Excluding Buildspecs (buildtest build --exclude
)
So far we learned how to build buildspecs by file and directory path using the -b
option. Next, we will discuss how one may exclude buildspecs which behaves similar to
-b
option. You can exclude buildspecs via --exclude
or short option -x
which can be useful when you want to exclude certain files or sub directory.
For example we can build all buildspecs in tutorials
but exclude file tutorials/vars.yml
by running:
$ buildtest build -b tutorials -x tutorials/vars.yml
buildtest will discover all buildspecs and then exclude any buildspecs specified
by -x
option. You can specify -x
multiple times just like -b
option.
For example, we can undo discovery by passing same option to -b
and -x
as follows
buildtest bd -b tutorials/ -x tutorials/
$ buildtest bd -b tutorials/ -x tutorials/ ╭───────────────────────────── buildtest summary ──────────────────────────────╮ │ │ │ User: docs │ │ Hostname: build-25534835-project-280831-buildtest │ │ Platform: Linux │ │ Current Time: 2024/09/05 15:34:33 │ │ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │ │ buildtest version: 2.1 │ │ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │ │ python version: 3.9.19 │ │ Configuration File: /tmp/tmpr88132k2/config.yml │ │ Test Directory: /tmp/tmpr88132k2/var/tests │ │ Report File: /tmp/tmpr88132k2/var/report.json │ │ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │ │ │ ╰──────────────────────────────────────────────────────────────────────────────╯ Unable to detect any buildspec files to process.
Buildtest will stop immediately if there are no Buildspecs to process, this is true if you were to specify files instead of directory.
In this example, we build all buildspecs in a directory but exclude a file. Buildtest
will report the excluded buildspecs in the output and -x
option can be appended multiple times.
The -x
can be a file or a directory and behaves similar to -b
option.
buildtest bd -b general_tests/configuration/ -x general_tests/configuration/ulimits.yml
$ buildtest bd -b general_tests/configuration/ -x general_tests/configuration/ulimits.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:34:34 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/kernel_state.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/systemd-default-target.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/disk_usage.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/ulimits.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 4 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Excluded buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/ulimits.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 4
Total Excluded Buildspecs: 1
Detected Buildspecs after exclusion: 3
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 3
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/general_tests/configuration/kernel_state.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/general_tests/configuration/systemd-default-target.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/general_tests/configuration/disk_usage.yml: VALID
Total builder objects created: 3
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ kernel_s │ script │ generic. │ None │ None │ None │ Retrieve │ /home/d │
│ wapusage │ │ local.ba │ │ │ │ Kernel │ ocs/che │
│ /8320c2f │ │ sh │ │ │ │ Swap │ ckouts/ │
│ 7 │ │ │ │ │ │ Usage │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/k │
│ │ │ │ │ │ │ │ ernel_s │
│ │ │ │ │ │ │ │ tate.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ systemd_ │ script │ generic. │ None │ None │ None │ check if │ /home/d │
│ default_ │ │ local.ba │ │ │ │ default │ ocs/che │
│ target/2 │ │ sh │ │ │ │ target │ ckouts/ │
│ 18dcfc5 │ │ │ │ │ │ is │ readthe │
│ │ │ │ │ │ │ multi-us │ docs.or │
│ │ │ │ │ │ │ er.targe │ g/user_ │
│ │ │ │ │ │ │ t │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/s │
│ │ │ │ │ │ │ │ ystemd- │
│ │ │ │ │ │ │ │ default │
│ │ │ │ │ │ │ │ -target │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ root_dis │ script │ generic. │ None │ None │ None │ Check │ /home/d │
│ k_usage/ │ │ local.ba │ │ │ │ root │ ocs/che │
│ 3edc011c │ │ sh │ │ │ │ disk │ ckouts/ │
│ │ │ │ │ │ │ usage │ readthe │
│ │ │ │ │ │ │ and │ docs.or │
│ │ │ │ │ │ │ report │ g/user_ │
│ │ │ │ │ │ │ if it │ builds/ │
│ │ │ │ │ │ │ exceeds │ buildte │
│ │ │ │ │ │ │ threshol │ st/chec │
│ │ │ │ │ │ │ d │ kouts/s │
│ │ │ │ │ │ │ │ table/g │
│ │ │ │ │ │ │ │ eneral_ │
│ │ │ │ │ │ │ │ tests/c │
│ │ │ │ │ │ │ │ onfigur │
│ │ │ │ │ │ │ │ ation/d │
│ │ │ │ │ │ │ │ isk_usa │
│ │ │ │ │ │ │ │ ge.yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
kernel_swapusage/8320c2f7: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/kernel_state/kernel_swapusage/8320c2f7
systemd_default_target/218dcfc5: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/218dcfc5
root_disk_usage/3edc011c: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/disk_usage/root_disk_usage/3edc011c
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
root_disk_usage/3edc011c does not have any dependencies adding test to queue
systemd_default_target/218dcfc5 does not have any dependencies adding test to queue
kernel_swapusage/8320c2f7 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ root_disk_usage/3edc011c │
│ kernel_swapusage/8320c2f7 │
│ systemd_default_target/218dcfc5 │
└─────────────────────────────────┘
root_disk_usage/3edc011c: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/disk_usage/root_disk_usage/3edc011c/stage
root_disk_usage/3edc011c: Running Test via command: bash root_disk_usage_build.sh
root_disk_usage/3edc011c: Test completed in 0.01577 seconds with returncode: 0
root_disk_usage/3edc011c: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/disk_usage/root_disk_usage/3edc011c/root_disk_usage.out
root_disk_usage/3edc011c: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/disk_usage/root_disk_usage/3edc011c/root_disk_usage.err
kernel_swapusage/8320c2f7: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/kernel_state/kernel_swapusage/8320c2f7/stage
kernel_swapusage/8320c2f7: Running Test via command: bash kernel_swapusage_build.sh
kernel_swapusage/8320c2f7: failed to submit job with returncode: 255
kernel_swapusage/8320c2f7: Detected failure in running test, will attempt to retry test: 1 times
kernel_swapusage/8320c2f7: Run - 1/1
kernel_swapusage/8320c2f7: Running Test via command: bash kernel_swapusage_build.sh
kernel_swapusage/8320c2f7: failed to submit job with returncode: 255
kernel_swapusage/8320c2f7: Test completed in 0.023663 seconds with returncode: 255
kernel_swapusage/8320c2f7: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/kernel_state/kernel_swapusage/8320c2f7/kernel_swapusage.out
kernel_swapusage/8320c2f7: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/kernel_state/kernel_swapusage/8320c2f7/kernel_swapusage.err
systemd_default_target/218dcfc5: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/218dcfc5/stage
systemd_default_target/218dcfc5: Running Test via command: bash systemd_default_target_build.sh
systemd_default_target/218dcfc5: failed to submit job with returncode: 1
systemd_default_target/218dcfc5: Detected failure in running test, will attempt to retry test: 1 times
systemd_default_target/218dcfc5: Run - 1/1
systemd_default_target/218dcfc5: Running Test via command: bash systemd_default_target_build.sh
systemd_default_target/218dcfc5: failed to submit job with returncode: 1
systemd_default_target/218dcfc5: Test completed in 0.029849 seconds with returncode: 1
systemd_default_target/218dcfc5: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/218dcfc5/systemd_default_target.out
systemd_default_target/218dcfc5: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/218dcfc5/systemd_default_target.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ root_disk_usage/3edc011 │ generic.local.bash │ PASS │ 0 │ 0.016 │
│ c │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ kernel_swapusage/8320c2 │ generic.local.bash │ FAIL │ 255 │ 0.024 │
│ f7 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ systemd_default_target/ │ generic.local.bash │ FAIL │ 1 │ 0.030 │
│ 218dcfc5 │ │ │ │ │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 1/3 Percentage: 33.333%
Failed Tests: 2/3 Percentage: 66.667%
Adding 3 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_ou3_sina.log
Building by Test Names (buildtest build --name
)
You can discover buildspecs by test names using the --name
option or short option -n
. This feature can be used if
you want to run a particular test and not worrying about the buildspec file that is belongs to. Note we have tab
completion builtin to this feature to show list of tests that are found in the buildspec cache. Shown below
is an example output of the tab completion listing all available tests
buildtest build --name _bin_bash_shell
_bin_bash_shell current_user_queue lsf_version runtime_test_pass status_regex_stderr_pass
_bin_sh_shell dead_nodes metric_file_regex sh_shell status_regex_stdout_fail
add_numbers display_hosts_format metric_file_regex_invalid_file shell_options status_regex_stdout_pass
always_fail display_lsf_hosts metric_regex_example show_accounts status_returncode_by_executors
always_pass executors_sbatch_declaration multiple_executors show_all_jobs stream_test
assert_contains_fail executors_vars_env_declaration node_down_fail_list_reason show_host_groups string_tag
assert_eq_example exit1_fail nodes_state_allocated show_jobs summary_example
assert_eq_invalid_metric exit1_pass nodes_state_completing show_lsf_configuration symlink_test
assert_eq_mismatch fail_test nodes_state_down show_lsf_models systemd_default_target
assert_gt_example file_and_dir_checks nodes_state_idle show_lsf_queues tcsh_env_declaration
assert_le_example file_count_by_expression nodes_state_reboot show_lsf_queues_current_user test1
assert_lt_example file_count_by_extension pass_and_fail_test show_lsf_queues_formatted test2
Let’s try building an example test by name hello_world
. Take note in output, buildtest will show a breakdown of buildspecs
discovered by the test name.
buildtest build --name hello_world
$ buildtest build --name hello_world
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:34:48 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/hello_world.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Buildspecs by Name=hello_world
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspecs ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/hello_world.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/hello_world.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ hello_wo │ script │ generic. │ None │ None │ None │ hello │ /home/d │
│ rld/50c2 │ │ local.ba │ │ │ │ world │ ocs/che │
│ fb9c │ │ sh │ │ │ │ example │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/hello │
│ │ │ │ │ │ │ │ _world. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
hello_world/50c2fb9c: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/50c2fb9c
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
hello_world/50c2fb9c does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ hello_world/50c2fb9c │
└──────────────────────┘
hello_world/50c2fb9c: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/50c2fb9c/stage
hello_world/50c2fb9c: Running Test via command: bash hello_world_build.sh
hello_world/50c2fb9c: Test completed in 0.008717 seconds with returncode: 0
hello_world/50c2fb9c: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/50c2fb9c/hello_world.out
hello_world/50c2fb9c: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/50c2fb9c/hello_world.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ hello_world/50c2fb9c │ generic.local.bash │ PASS │ 0 │ 0.009 │
└──────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%
Adding 1 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_j1izeks8.log
You can specify multiple test names just specify the option multiple times. In example below we will demonstrate this example
buildtest build --name add_numbers --name summary_example
$ buildtest build --name add_numbers --name summary_example
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:34:49 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/summary_example.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/add_numbers.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 2 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Buildspecs by Name=add_numbers
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspecs ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/add_numbers.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Buildspecs by Name=summary_example
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspecs ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/summary_example.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 2
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 2
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 2
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/summary_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/add_numbers.yml: VALID
Total builder objects created: 2
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ summary_ │ script │ generic. │ None │ None │ None │ The │ /home/d │
│ example/ │ │ local.ba │ │ │ │ summary │ ocs/che │
│ de83877e │ │ sh │ │ │ │ field │ ckouts/ │
│ │ │ │ │ │ │ can be a │ readthe │
│ │ │ │ │ │ │ multi-li │ docs.or │
│ │ │ │ │ │ │ ne │ g/user_ │
│ │ │ │ │ │ │ string │ builds/ │
│ │ │ │ │ │ │ and │ buildte │
│ │ │ │ │ │ │ exceed │ st/chec │
│ │ │ │ │ │ │ 80 char │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/summa │
│ │ │ │ │ │ │ │ ry_exam │
│ │ │ │ │ │ │ │ ple.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ add_numb │ script │ generic. │ None │ None │ None │ Add X+Y │ /home/d │
│ ers/bff7 │ │ local.ba │ │ │ │ │ ocs/che │
│ 4873 │ │ sh │ │ │ │ │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/add_n │
│ │ │ │ │ │ │ │ umbers. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
summary_example/de83877e: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/summary_example/summary_example/de83877e
add_numbers/bff74873: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/add_numbers/add_numbers/bff74873
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
add_numbers/bff74873 does not have any dependencies adding test to queue
summary_example/de83877e does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ add_numbers/bff74873 │
│ summary_example/de83877e │
└──────────────────────────┘
add_numbers/bff74873: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/add_numbers/add_numbers/bff74873/stage
add_numbers/bff74873: Running Test via command: bash add_numbers_build.sh
add_numbers/bff74873: Test completed in 0.009038 seconds with returncode: 0
add_numbers/bff74873: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/add_numbers/add_numbers/bff74873/add_numbers.out
add_numbers/bff74873: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/add_numbers/add_numbers/bff74873/add_numbers.err
summary_example/de83877e: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/summary_example/summary_example/de83877e/stage
summary_example/de83877e: Running Test via command: bash summary_example_build.sh
summary_example/de83877e: Test completed in 0.009447 seconds with returncode: 0
summary_example/de83877e: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/summary_example/summary_example/de83877e/summary_example.out
summary_example/de83877e: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/summary_example/summary_example/de83877e/summary_example.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ add_numbers/bff74873 │ generic.local.bash │ PASS │ 0 │ 0.009 │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ summary_example/de83877 │ generic.local.bash │ PASS │ 0 │ 0.009 │
│ e │ │ │ │ │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 2/2 Percentage: 100.000%
Failed Tests: 0/2 Percentage: 0.000%
Adding 2 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_jrwshbr_.log
Please note, buildtest will discover buildspecs given the test name (--name
) option and then run all tests defined in the buildspec file.
A buildspec file may include several tests and by default all of them are run. This option is
not meant to filter buildspecs by the selected test, but only a means for discovering buildspecs by test name.
Building by Executors (buildtest build --executor
)
Every buildspec is associated to an executor which is responsible for running the test.
You can instruct buildtest to run all tests by given executor via --executor
option or short option -e
.
For instance, if you want to build all test associated to executor generic.local.csh
you can run:
$ buildtest build --executor generic.local.csh
buildtest will query buildspec cache for the executor name and retrieve a list of buildspecs with matching executor name. To see a list of available executors in buildspec cache see querying buildspec executor.
Note
By default all tests are run in buildspec file. The buildtest build --executor
option discovers
buildspecs if one of the test matches the executor name. The --executor
option
is not filtering tests but only discovering buildspecs.
In this example we run all tests that are associated to generic.local.csh
executor.
buildtest build --executor generic.local.csh
$ buildtest build --executor generic.local.csh
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:34:50 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/environment.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/csh_shell_examples.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 2 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Buildspecs by Executor=generic.local.csh
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspecs ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/environment.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/csh_shell_examples.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 2 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 2
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 2
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 2
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/environment.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/csh_shell_examples.yml: VALID
Total builder objects created: 4
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ bash_env │ script │ generic. │ None │ None │ None │ Declare │ /home/d │
│ _variabl │ │ local.ba │ │ │ │ environm │ ocs/che │
│ es/6c1ca │ │ sh │ │ │ │ ent │ ckouts/ │
│ a5c │ │ │ │ │ │ variable │ readthe │
│ │ │ │ │ │ │ s in │ docs.or │
│ │ │ │ │ │ │ default │ g/user_ │
│ │ │ │ │ │ │ shell │ builds/ │
│ │ │ │ │ │ │ (bash) │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/envir │
│ │ │ │ │ │ │ │ onment. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ csh_env_ │ script │ generic. │ None │ None │ None │ csh │ /home/d │
│ declarat │ │ local.cs │ │ │ │ shell │ ocs/che │
│ ion/2a43 │ │ h │ │ │ │ example │ ckouts/ │
│ 25be │ │ │ │ │ │ to │ readthe │
│ │ │ │ │ │ │ declare │ docs.or │
│ │ │ │ │ │ │ environm │ g/user_ │
│ │ │ │ │ │ │ ent │ builds/ │
│ │ │ │ │ │ │ variable │ buildte │
│ │ │ │ │ │ │ s │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/envir │
│ │ │ │ │ │ │ │ onment. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ tcsh_env │ script │ generic. │ None │ None │ None │ tcsh │ /home/d │
│ _declara │ │ local.cs │ │ │ │ shell │ ocs/che │
│ tion/b7e │ │ h │ │ │ │ example │ ckouts/ │
│ efda3 │ │ │ │ │ │ to │ readthe │
│ │ │ │ │ │ │ declare │ docs.or │
│ │ │ │ │ │ │ environm │ g/user_ │
│ │ │ │ │ │ │ ent │ builds/ │
│ │ │ │ │ │ │ variable │ buildte │
│ │ │ │ │ │ │ s │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/envir │
│ │ │ │ │ │ │ │ onment. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ csh_shel │ script │ generic. │ None │ None │ None │ csh │ /home/d │
│ l/0a3fc8 │ │ local.cs │ │ │ │ shell │ ocs/che │
│ 72 │ │ h │ │ │ │ example │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/csh_s │
│ │ │ │ │ │ │ │ hell_ex │
│ │ │ │ │ │ │ │ amples. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
bash_env_variables/6c1caa5c: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/environment/bash_env_variables/6c1caa5c
csh_env_declaration/2a4325be: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.csh/environment/csh_env_declaration/2a4325be
tcsh_env_declaration/b7eefda3: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.csh/environment/tcsh_env_declaration/b7eefda3
csh_shell/0a3fc872: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.csh/csh_shell_examples/csh_shell/0a3fc872
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
csh_env_declaration/2a4325be does not have any dependencies adding test to queue
bash_env_variables/6c1caa5c does not have any dependencies adding test to queue
tcsh_env_declaration/b7eefda3 does not have any dependencies adding test to queue
csh_shell/0a3fc872 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ bash_env_variables/6c1caa5c │
│ csh_env_declaration/2a4325be │
│ tcsh_env_declaration/b7eefda3 │
│ csh_shell/0a3fc872 │
└───────────────────────────────┘
bash_env_variables/6c1caa5c: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/environment/bash_env_variables/6c1caa5c/stage
bash_env_variables/6c1caa5c: Running Test via command: bash bash_env_variables_build.sh
bash_env_variables/6c1caa5c: Test completed in 0.011345 seconds with returncode: 0
bash_env_variables/6c1caa5c: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/environment/bash_env_variables/6c1caa5c/bash_env_variables.out
bash_env_variables/6c1caa5c: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/environment/bash_env_variables/6c1caa5c/bash_env_variables.err
csh_env_declaration/2a4325be: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.csh/environment/csh_env_declaration/2a4325be/stage
csh_env_declaration/2a4325be: Running Test via command: bash csh_env_declaration_build.sh
csh_env_declaration/2a4325be: Test completed in 2.639772 seconds with returncode: 0
csh_env_declaration/2a4325be: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.csh/environment/csh_env_declaration/2a4325be/csh_env_declaration.out
csh_env_declaration/2a4325be: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.csh/environment/csh_env_declaration/2a4325be/csh_env_declaration.err
tcsh_env_declaration/b7eefda3: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.csh/environment/tcsh_env_declaration/b7eefda3/stage
tcsh_env_declaration/b7eefda3: Running Test via command: bash tcsh_env_declaration_build.sh
tcsh_env_declaration/b7eefda3: Test completed in 0.021944 seconds with returncode: 0
tcsh_env_declaration/b7eefda3: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.csh/environment/tcsh_env_declaration/b7eefda3/tcsh_env_declaration.out
tcsh_env_declaration/b7eefda3: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.csh/environment/tcsh_env_declaration/b7eefda3/tcsh_env_declaration.err
csh_shell/0a3fc872: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.csh/csh_shell_examples/csh_shell/0a3fc872/stage
csh_shell/0a3fc872: Running Test via command: bash csh_shell_build.sh
csh_shell/0a3fc872: Test completed in 2.636942 seconds with returncode: 0
csh_shell/0a3fc872: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.csh/csh_shell_examples/csh_shell/0a3fc872/csh_shell.out
csh_shell/0a3fc872: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.csh/csh_shell_examples/csh_shell/0a3fc872/csh_shell.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ tcsh_env_declaration/b7 │ generic.local.csh │ PASS │ 0 │ 0.022 │
│ eefda3 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ bash_env_variables/6c1c │ generic.local.bash │ PASS │ 0 │ 0.011 │
│ aa5c │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ csh_shell/0a3fc872 │ generic.local.csh │ PASS │ 0 │ 2.637 │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ csh_env_declaration/2a4 │ generic.local.csh │ PASS │ 0 │ 2.640 │
│ 325be │ │ │ │ │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 4/4 Percentage: 100.000%
Failed Tests: 0/4 Percentage: 0.000%
Adding 4 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest__volb7io.log
Note
The --executor
option can be appended to discover tests by multiple executors.
Filtering Buildspecs (buildtest build --filter
)
buildtest has support for filtering buildspecs based on certain attributes defined in buildspec file. Upon Discover Buildspecs, buildtest
will filter out tests or entire buildspec files. The buildtest build --filter
option can be used to filter tests where the format is key1=val1;key2=val2,val3
.
The semicolon is used to specify multiple filter fields and the comma is used to specify multiple values for a given field.
To see all available filter fields you can run buildtest build --helpfilter
and buildtest will
report the fields followed by description.
buildtest build --helpfilter
$ buildtest build --helpfilter
Buildtest Filters
┏━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Field ┃ Description ┃
┡━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ tags │ Filter tests by 'tag' field │
│ type │ Filter test by 'type' field │
│ maintainers │ Filter test by 'maintainers' field │
└─────────────┴────────────────────────────────────┘
In this example, we will discover all buildspecs based on tagname pass
and then filter each test by tagname pass specified by --filter tags=pass
.
buildtest build -t pass --filter tags=pass
$ buildtest build -t pass --filter tags=pass
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:34:58 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Buildspecs By Tag=pass
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
[exit1_fail][/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml]: test is skipped because it is not in tag filter list: {'tags': ['pass']}
[returncode_list_mismatch][/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml]: test is skipped because it is not in tag filter list: {'tags': ['pass']}
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml: VALID
Total builder objects created: 2
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ exit1_pa │ script │ generic. │ None │ None │ None │ report │ /home/d │
│ ss/995b6 │ │ local.ba │ │ │ │ exit 1 │ ocs/che │
│ eee │ │ sh │ │ │ │ as PASS │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnco │ script │ generic. │ None │ None │ None │ exit 128 │ /home/d │
│ de_int_m │ │ local.ba │ │ │ │ matches │ ocs/che │
│ atch/8a0 │ │ sh │ │ │ │ returnco │ ckouts/ │
│ ee76b │ │ │ │ │ │ de 128 │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
exit1_pass/995b6eee: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/995b6eee
returncode_int_match/8a0ee76b: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/8a0ee76b
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
exit1_pass/995b6eee does not have any dependencies adding test to queue
returncode_int_match/8a0ee76b does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ exit1_pass/995b6eee │
│ returncode_int_match/8a0ee76b │
└───────────────────────────────┘
exit1_pass/995b6eee: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/995b6eee/stage
exit1_pass/995b6eee: Running Test via command: bash exit1_pass_build.sh
exit1_pass/995b6eee: failed to submit job with returncode: 1
exit1_pass/995b6eee: Detected failure in running test, will attempt to retry test: 1 times
exit1_pass/995b6eee: Run - 1/1
exit1_pass/995b6eee: Running Test via command: bash exit1_pass_build.sh
exit1_pass/995b6eee: failed to submit job with returncode: 1
exit1_pass/995b6eee: Test completed in 0.020794 seconds with returncode: 1
exit1_pass/995b6eee: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/995b6eee/exit1_pass.out
exit1_pass/995b6eee: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/995b6eee/exit1_pass.err
exit1_pass/995b6eee: Checking returncode - 1 is matched in list [1]
returncode_int_match/8a0ee76b: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/8a0ee76b/stage
returncode_int_match/8a0ee76b: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/8a0ee76b: failed to submit job with returncode: 128
returncode_int_match/8a0ee76b: Detected failure in running test, will attempt to retry test: 1 times
returncode_int_match/8a0ee76b: Run - 1/1
returncode_int_match/8a0ee76b: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/8a0ee76b: failed to submit job with returncode: 128
returncode_int_match/8a0ee76b: Test completed in 0.020831 seconds with returncode: 128
returncode_int_match/8a0ee76b: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/8a0ee76b/returncode_int_match.out
returncode_int_match/8a0ee76b: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/8a0ee76b/returncode_int_match.err
returncode_int_match/8a0ee76b: Checking returncode - 128 is matched in list [128]
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ exit1_pass/995b6eee │ generic.local.bash │ PASS │ 1 │ 0.021 │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_int_match/8a │ generic.local.bash │ PASS │ 128 │ 0.021 │
│ 0ee76b │ │ │ │ │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 2/2 Percentage: 100.000%
Failed Tests: 0/2 Percentage: 0.000%
Adding 2 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_sm89eras.log
buildtest can run filter tests by maintainers, this can be useful if you want to run tests that you are maintainer. The maintainers
field is
set per buildspec and not each test. You can filter maintiners via --filter maintainers=<MAINTAINER_NAME>
. If the maintainers
field is not specified
the buildspec will be filtered out if --filter maintainers
is specified. In this next example, we will build all tests for maintainer
@shahzebsiddiqui
.
buildtest build -b tutorials --filter maintainers=@shahzebsiddiqui
$ buildtest build -b tutorials --filter maintainers=@shahzebsiddiqui
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:34:59 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/container_executor/ubuntu.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_count_file_traverse_limit.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/maintainers_example.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_exists_with_number.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_count_filetype.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/sleep.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/status_regex.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/regex_on_filename.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_file_regex_with_invalid_linenum.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_eq_exceptions.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_and_dir_check.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_exists_exception.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/job_dependency/ex4.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/multi_executors/status_by_executors.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/summary_example.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/hello_world.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/multi_executors/executors_var_env_declaration.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/gcc_version.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/skip_tests.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/strict_example.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/mode.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-shell.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/exists.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/compilation/stream.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/missing_required_in_metrics.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/job_dependency/ex2.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_range.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/invalid_tags.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/hello_world_singularity.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/shebang.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/linecount.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_linecount_failure.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/multi_executors/executor_regex_script.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/run_commands.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/post_run.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_regex_with_invalid_linenum.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-hello.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/burstbuffer_datawarp_executors.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_regex_with_linenum.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_linecount.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_count.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/is_symlink.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/compilation/hello_world_compilation.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_regex.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/multi_executors/executor_scheduler.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_ge.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/hello_world.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/specify_regex_type.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_linecount_invalid.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/tags_example.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_file_regex_with_linenum.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_file_regex_invalid_file.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/bind_mounts.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/run_script.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/job_dependency/ex1.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_le.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/container_executor/python_container.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_with_regex_type.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/shell_examples.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/vars.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/skip_buildspec.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/invalid_metric_name.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_ne.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/job_dependency/ex3.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_count_pattern.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/csh_shell_examples.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/runtime_status_test.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/explicit_state.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/add_numbers.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/invalid_executor.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/invalid_buildspec_section.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/contains.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/compilation/compiler_exclude.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_lt.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_eq.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_gt.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/environment.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/invalid_metrics.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 79 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 79
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 79
────────────────────────────── Parsing Buildspecs ──────────────────────────────
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/container_executor/ubuntu.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_count_file_traverse_limit.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/maintainers_example.yml: unable to find maintainer: ['@shahzebsiddiqui'] in buildspec which contains the following maintainers: ['@johndoe', '@bobsmith'] therefore we skip this test
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_exists_with_number.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_count_filetype.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/sleep.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/status_regex.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/regex_on_filename.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_file_regex_with_invalid_linenum.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_eq_exceptions.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_and_dir_check.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/job_dependency/ex4.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/multi_executors/status_by_executors.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/summary_example.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/hello_world.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/multi_executors/executors_var_env_declaration.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/gcc_version.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/skip_tests.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/strict_example.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/mode.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-shell.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/exists.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/compilation/stream.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/job_dependency/ex2.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_range.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/hello_world_singularity.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/shebang.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/linecount.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_linecount_failure.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/multi_executors/executor_regex_script.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/run_commands.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/post_run.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_regex_with_invalid_linenum.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-hello.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/burstbuffer_datawarp_executors.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_regex_with_linenum.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_linecount.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_count.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/is_symlink.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/compilation/hello_world_compilation.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_regex.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/multi_executors/executor_scheduler.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_ge.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/specify_regex_type.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/tags_example.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_file_regex_with_linenum.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_file_regex_invalid_file.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/bind_mounts.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/run_script.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/job_dependency/ex1.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_le.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/container_executor/python_container.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_with_regex_type.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/shell_examples.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/vars.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/skip_buildspec.yml: skipping all test since 'skip' is defined
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_ne.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/job_dependency/ex3.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_count_pattern.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/csh_shell_examples.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/runtime_status_test.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/explicit_state.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/add_numbers.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/invalid_executor.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/contains.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/compilation/compiler_exclude.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_lt.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_eq.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_gt.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/environment.yml: skipping test because 'maintainers' field is not specified in buildspec.
Valid Buildspecs: 72
Invalid Buildspecs: 7
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/container_executor/ubuntu.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_count_file_traverse_limit.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/maintainers_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_exists_with_number.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_count_filetype.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/sleep.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/status_regex.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/regex_on_filename.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_file_regex_with_invalid_linenum.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_eq_exceptions.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_and_dir_check.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/job_dependency/ex4.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/multi_executors/status_by_executors.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/summary_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/hello_world.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/multi_executors/executors_var_env_declaration.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/gcc_version.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/skip_tests.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/strict_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/mode.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-shell.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/exists.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/compilation/stream.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/job_dependency/ex2.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_range.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/hello_world_singularity.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/shebang.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/linecount.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_linecount_failure.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/multi_executors/executor_regex_script.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/run_commands.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/post_run.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_regex_with_invalid_linenum.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-hello.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/burstbuffer_datawarp_executors.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_regex_with_linenum.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_linecount.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_count.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/is_symlink.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/compilation/hello_world_compilation.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_regex.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/multi_executors/executor_scheduler.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_ge.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/hello_world.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/specify_regex_type.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/tags_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_file_regex_with_linenum.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_file_regex_invalid_file.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/bind_mounts.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/run_script.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/job_dependency/ex1.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_le.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/container_executor/python_container.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_with_regex_type.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/shell_examples.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/vars.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/skip_buildspec.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_ne.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/job_dependency/ex3.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_count_pattern.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/csh_shell_examples.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/runtime_status_test.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/explicit_state.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/add_numbers.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/invalid_executor.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/contains.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/compilation/compiler_exclude.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_lt.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_eq.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_gt.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/environment.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_exists_exception.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/missing_required_in_metrics.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/invalid_tags.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_linecount_invalid.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/invalid_metric_name.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/invalid_buildspec_section.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/invalid_metrics.yml: INVALID
Buildspecs Filtered out
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ buildspecs ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
└──────────────────────────────────────────────────────────────────────────────┘
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ hello_wo │ script │ generic. │ None │ None │ None │ hello │ /home/d │
│ rld/f3cc │ │ local.ba │ │ │ │ world │ ocs/che │
│ 9e60 │ │ sh │ │ │ │ example │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/hello │
│ │ │ │ │ │ │ │ _world. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
hello_world/f3cc9e60: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/f3cc9e60
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
hello_world/f3cc9e60 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ hello_world/f3cc9e60 │
└──────────────────────┘
hello_world/f3cc9e60: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/f3cc9e60/stage
hello_world/f3cc9e60: Running Test via command: bash hello_world_build.sh
hello_world/f3cc9e60: Test completed in 0.009119 seconds with returncode: 0
hello_world/f3cc9e60: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/f3cc9e60/hello_world.out
hello_world/f3cc9e60: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/f3cc9e60/hello_world.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ hello_world/f3cc9e60 │ generic.local.bash │ PASS │ 0 │ 0.009 │
└──────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%
Adding 1 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_qjs3e5tg.log
Please see Query Maintainers (buildtest buildspec maintainers) on list of maintainers and breakdown of buildspecs by maintainers.
We can also filter tests by type
field in the buildspec which corresponds to the schema type. In this next example, we filter all tests by script schema type by
passing option --filter type=script
.
buildtest build -b tutorials --filter type=script --dry-run
$ buildtest build -b tutorials --filter type=script --dry-run
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:01 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/summary_example.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/exists.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/shell_examples.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/tags_example.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_regex.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/sleep.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/skip_buildspec.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/runtime_status_test.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/hello_world_singularity.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_lt.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/run_script.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_linecount_failure.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/missing_required_in_metrics.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/compilation/stream.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/burstbuffer_datawarp_executors.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_file_regex_with_linenum.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/maintainers_example.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_eq_exceptions.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/multi_executors/executor_scheduler.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/csh_shell_examples.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_and_dir_check.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/environment.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/job_dependency/ex2.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_file_regex_with_invalid_linenum.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_count.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/post_run.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/multi_executors/executors_var_env_declaration.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/hello_world.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_exists_exception.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_file_regex_invalid_file.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/invalid_executor.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/contains.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/job_dependency/ex4.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/status_regex.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/job_dependency/ex1.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/run_commands.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_count_filetype.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/mode.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-shell.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_count_pattern.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_with_regex_type.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/skip_tests.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_eq.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_ne.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_regex_with_linenum.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/compilation/compiler_exclude.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-hello.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/regex_on_filename.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/linecount.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/invalid_metrics.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/invalid_buildspec_section.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/job_dependency/ex3.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/hello_world.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/invalid_tags.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/container_executor/ubuntu.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_le.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_linecount_invalid.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/specify_regex_type.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_exists_with_number.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/strict_example.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_ge.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/gcc_version.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/is_symlink.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/metrics_regex_with_invalid_linenum.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/bind_mounts.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/vars.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/multi_executors/executor_regex_script.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/compilation/hello_world_compilation.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/shebang.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_linecount.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/explicit_state.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_range.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/metrics/invalid_metric_name.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/multi_executors/status_by_executors.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/file_count_file_traverse_limit.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/perf_checks/assert_gt.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/container_executor/python_container.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/add_numbers.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 79 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 79
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 79
────────────────────────────── Parsing Buildspecs ──────────────────────────────
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/skip_buildspec.yml: skipping all test since 'skip' is defined
skip: skipping test due to 'skip' property.
[compiler_exclude_example][/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/compilation/compiler_exclude.yml]: Unable to find any compilers based on regular expression: ['gcc'] so no tests were created.
Valid Buildspecs: 72
Invalid Buildspecs: 7
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/summary_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/exists.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/shell_examples.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/tags_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_regex.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/sleep.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/skip_buildspec.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/runtime_status_test.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/hello_world_singularity.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_lt.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/run_script.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_linecount_failure.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/compilation/stream.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/burstbuffer_datawarp_executors.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_file_regex_with_linenum.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/maintainers_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_eq_exceptions.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/multi_executors/executor_scheduler.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/csh_shell_examples.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_and_dir_check.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/environment.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/job_dependency/ex2.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_file_regex_with_invalid_linenum.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_count.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/post_run.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/multi_executors/executors_var_env_declaration.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/hello_world.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_file_regex_invalid_file.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/invalid_executor.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/contains.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/job_dependency/ex4.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/status_regex.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/job_dependency/ex1.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/run_commands.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_count_filetype.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/mode.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-shell.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_count_pattern.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_with_regex_type.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/skip_tests.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_eq.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_ne.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_regex_with_linenum.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/compilation/compiler_exclude.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-hello.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/regex_on_filename.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/linecount.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/job_dependency/ex3.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/hello_world.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/container_executor/ubuntu.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_le.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/specify_regex_type.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_exists_with_number.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/strict_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_ge.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/gcc_version.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/is_symlink.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/metrics_regex_with_invalid_linenum.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/bind_mounts.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/vars.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/multi_executors/executor_regex_script.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/compilation/hello_world_compilation.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/shebang.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_linecount.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/explicit_state.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_range.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/multi_executors/status_by_executors.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_count_file_traverse_limit.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/perf_checks/assert_gt.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/containers/container_executor/python_container.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/add_numbers.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/missing_required_in_metrics.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_exists_exception.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/invalid_metrics.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/invalid_buildspec_section.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/invalid_tags.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/file_linecount_invalid.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/metrics/invalid_metric_name.yml: INVALID
Buildspecs Filtered out
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ buildspecs ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
└──────────────────────────────────────────────────────────────────────────────┘
Total builder objects created: 117
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descrip ┃ buildspe ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ tion ┃ cs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━┩
│ summary_ │ script │ generic. │ None │ None │ None │ The │ /home/do │
│ example/ │ │ local.ba │ │ │ │ summary │ cs/check │
│ 22921ee4 │ │ sh │ │ │ │ field │ outs/rea │
│ │ │ │ │ │ │ can be │ dthedocs │
│ │ │ │ │ │ │ a │ .org/use │
│ │ │ │ │ │ │ multi-l │ r_builds │
│ │ │ │ │ │ │ ine │ /buildte │
│ │ │ │ │ │ │ string │ st/check │
│ │ │ │ │ │ │ and │ outs/sta │
│ │ │ │ │ │ │ exceed │ ble/tuto │
│ │ │ │ │ │ │ 80 char │ rials/su │
│ │ │ │ │ │ │ │ mmary_ex │
│ │ │ │ │ │ │ │ ample.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_e │ script │ generic. │ None │ None │ None │ status │ /home/do │
│ xists/d8 │ │ local.ba │ │ │ │ check │ cs/check │
│ ca53ab │ │ sh │ │ │ │ based │ outs/rea │
│ │ │ │ │ │ │ for │ dthedocs │
│ │ │ │ │ │ │ file │ .org/use │
│ │ │ │ │ │ │ and │ r_builds │
│ │ │ │ │ │ │ directo │ /buildte │
│ │ │ │ │ │ │ ry │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/exists │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_e │ script │ generic. │ None │ None │ None │ status │ /home/do │
│ xists_fa │ │ local.ba │ │ │ │ check │ cs/check │
│ ilure/c5 │ │ sh │ │ │ │ failure │ outs/rea │
│ ea0135 │ │ │ │ │ │ for │ dthedocs │
│ │ │ │ │ │ │ existen │ .org/use │
│ │ │ │ │ │ │ ce │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/exists │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ _bin_sh_ │ script │ generic. │ None │ None │ None │ /bin/sh │ /home/do │
│ shell/ea │ │ local.sh │ │ │ │ shell │ cs/check │
│ 27beaa │ │ │ │ │ │ example │ outs/rea │
│ │ │ │ │ │ │ │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/sh │
│ │ │ │ │ │ │ │ ell_exam │
│ │ │ │ │ │ │ │ ples.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ _bin_bas │ script │ generic. │ None │ None │ None │ /bin/ba │ /home/do │
│ h_shell/ │ │ local.ba │ │ │ │ sh │ cs/check │
│ 41844ca5 │ │ sh │ │ │ │ shell │ outs/rea │
│ │ │ │ │ │ │ example │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/sh │
│ │ │ │ │ │ │ │ ell_exam │
│ │ │ │ │ │ │ │ ples.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ bash_she │ script │ generic. │ None │ None │ None │ bash │ /home/do │
│ ll/998a0 │ │ local.ba │ │ │ │ shell │ cs/check │
│ b7b │ │ sh │ │ │ │ example │ outs/rea │
│ │ │ │ │ │ │ │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/sh │
│ │ │ │ │ │ │ │ ell_exam │
│ │ │ │ │ │ │ │ ples.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ sh_shell │ script │ generic. │ None │ None │ None │ sh │ /home/do │
│ /53b8b84 │ │ local.sh │ │ │ │ shell │ cs/check │
│ d │ │ │ │ │ │ example │ outs/rea │
│ │ │ │ │ │ │ │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/sh │
│ │ │ │ │ │ │ │ ell_exam │
│ │ │ │ │ │ │ │ ples.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ shell_op │ script │ generic. │ None │ None │ None │ shell │ /home/do │
│ tions/5c │ │ local.sh │ │ │ │ options │ cs/check │
│ a43699 │ │ │ │ │ │ │ outs/rea │
│ │ │ │ │ │ │ │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/sh │
│ │ │ │ │ │ │ │ ell_exam │
│ │ │ │ │ │ │ │ ples.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ string_t │ script │ generic. │ None │ None │ None │ tags │ /home/do │
│ ag/ddbe1 │ │ local.ba │ │ │ │ can be │ cs/check │
│ 6a6 │ │ sh │ │ │ │ a │ outs/rea │
│ │ │ │ │ │ │ string │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/ta │
│ │ │ │ │ │ │ │ gs_examp │
│ │ │ │ │ │ │ │ le.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ list_of_ │ script │ generic. │ None │ None │ None │ tags │ /home/do │
│ strings_ │ │ local.ba │ │ │ │ can be │ cs/check │
│ tags/828 │ │ sh │ │ │ │ a list │ outs/rea │
│ 27e1c │ │ │ │ │ │ of │ dthedocs │
│ │ │ │ │ │ │ strings │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/ta │
│ │ │ │ │ │ │ │ gs_examp │
│ │ │ │ │ │ │ │ le.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ metric_r │ script │ generic. │ None │ None │ None │ capture │ /home/do │
│ egex_exa │ │ local.ba │ │ │ │ result │ cs/check │
│ mple/568 │ │ sh │ │ │ │ metric │ outs/rea │
│ 8a94b │ │ │ │ │ │ from │ dthedocs │
│ │ │ │ │ │ │ output │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/me │
│ │ │ │ │ │ │ │ trics/me │
│ │ │ │ │ │ │ │ trics_re │
│ │ │ │ │ │ │ │ gex.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ metric_f │ script │ generic. │ None │ None │ None │ capture │ /home/do │
│ ile_rege │ │ local.ba │ │ │ │ result │ cs/check │
│ x/87bdea │ │ sh │ │ │ │ metric │ outs/rea │
│ 67 │ │ │ │ │ │ from │ dthedocs │
│ │ │ │ │ │ │ file │ .org/use │
│ │ │ │ │ │ │ path │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/me │
│ │ │ │ │ │ │ │ trics/me │
│ │ │ │ │ │ │ │ trics_re │
│ │ │ │ │ │ │ │ gex.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ sleep/8f │ script │ generic. │ None │ None │ None │ sleep 2 │ /home/do │
│ 61affe │ │ local.ba │ │ │ │ seconds │ cs/check │
│ │ │ sh │ │ │ │ │ outs/rea │
│ │ │ │ │ │ │ │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/sl │
│ │ │ │ │ │ │ │ eep.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ timelimi │ script │ generic. │ None │ None │ None │ Run a │ /home/do │
│ t_min_ma │ │ local.sh │ │ │ │ sleep │ cs/check │
│ x/ba1549 │ │ │ │ │ │ job for │ outs/rea │
│ 7b │ │ │ │ │ │ 2 │ dthedocs │
│ │ │ │ │ │ │ seconds │ .org/use │
│ │ │ │ │ │ │ and │ r_builds │
│ │ │ │ │ │ │ test │ /buildte │
│ │ │ │ │ │ │ pass if │ st/check │
│ │ │ │ │ │ │ its │ outs/sta │
│ │ │ │ │ │ │ within │ ble/tuto │
│ │ │ │ │ │ │ 1.0-3.0 │ rials/te │
│ │ │ │ │ │ │ sec │ st_statu │
│ │ │ │ │ │ │ │ s/runtim │
│ │ │ │ │ │ │ │ e_status │
│ │ │ │ │ │ │ │ _test.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ timelimi │ script │ generic. │ None │ None │ None │ Run a │ /home/do │
│ t_min/9a │ │ local.sh │ │ │ │ sleep │ cs/check │
│ 5b2d2e │ │ │ │ │ │ job for │ outs/rea │
│ │ │ │ │ │ │ 2 │ dthedocs │
│ │ │ │ │ │ │ seconds │ .org/use │
│ │ │ │ │ │ │ and │ r_builds │
│ │ │ │ │ │ │ test │ /buildte │
│ │ │ │ │ │ │ pass if │ st/check │
│ │ │ │ │ │ │ its │ outs/sta │
│ │ │ │ │ │ │ exceeds │ ble/tuto │
│ │ │ │ │ │ │ min │ rials/te │
│ │ │ │ │ │ │ time of │ st_statu │
│ │ │ │ │ │ │ 1.0 sec │ s/runtim │
│ │ │ │ │ │ │ │ e_status │
│ │ │ │ │ │ │ │ _test.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ timelimi │ script │ generic. │ None │ None │ None │ Run a │ /home/do │
│ t_max/c4 │ │ local.sh │ │ │ │ sleep │ cs/check │
│ d2c13a │ │ │ │ │ │ job for │ outs/rea │
│ │ │ │ │ │ │ 2 │ dthedocs │
│ │ │ │ │ │ │ seconds │ .org/use │
│ │ │ │ │ │ │ and │ r_builds │
│ │ │ │ │ │ │ test │ /buildte │
│ │ │ │ │ │ │ pass if │ st/check │
│ │ │ │ │ │ │ it's │ outs/sta │
│ │ │ │ │ │ │ within │ ble/tuto │
│ │ │ │ │ │ │ max │ rials/te │
│ │ │ │ │ │ │ time: │ st_statu │
│ │ │ │ │ │ │ 5.0 sec │ s/runtim │
│ │ │ │ │ │ │ │ e_status │
│ │ │ │ │ │ │ │ _test.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ timelimi │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ t_min_fa │ │ local.sh │ │ │ │ test │ cs/check │
│ il/20af8 │ │ │ │ │ │ fails │ outs/rea │
│ 778 │ │ │ │ │ │ because │ dthedocs │
│ │ │ │ │ │ │ it runs │ .org/use │
│ │ │ │ │ │ │ less │ r_builds │
│ │ │ │ │ │ │ than │ /buildte │
│ │ │ │ │ │ │ mintime │ st/check │
│ │ │ │ │ │ │ of 10 │ outs/sta │
│ │ │ │ │ │ │ second │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/runtim │
│ │ │ │ │ │ │ │ e_status │
│ │ │ │ │ │ │ │ _test.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ timelimi │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ t_max_fa │ │ local.sh │ │ │ │ test │ cs/check │
│ il/48b81 │ │ │ │ │ │ fails │ outs/rea │
│ f3a │ │ │ │ │ │ because │ dthedocs │
│ │ │ │ │ │ │ it │ .org/use │
│ │ │ │ │ │ │ exceeds │ r_builds │
│ │ │ │ │ │ │ maxtime │ /buildte │
│ │ │ │ │ │ │ of 1.0 │ st/check │
│ │ │ │ │ │ │ second │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/runtim │
│ │ │ │ │ │ │ │ e_status │
│ │ │ │ │ │ │ │ _test.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ hello_wo │ script │ generic. │ None │ None │ None │ run │ /home/do │
│ rld_sing │ │ local.ba │ │ │ │ hello-w │ cs/check │
│ ularity/ │ │ sh │ │ │ │ orld │ outs/rea │
│ 67068ac5 │ │ │ │ │ │ contain │ dthedocs │
│ │ │ │ │ │ │ er │ .org/use │
│ │ │ │ │ │ │ using │ r_builds │
│ │ │ │ │ │ │ singula │ /buildte │
│ │ │ │ │ │ │ rity │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/co │
│ │ │ │ │ │ │ │ ntainers │
│ │ │ │ │ │ │ │ /hello_w │
│ │ │ │ │ │ │ │ orld_sin │
│ │ │ │ │ │ │ │ gularity │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_l │ script │ generic. │ None │ None │ None │ Run │ /home/do │
│ t_exampl │ │ local.ba │ │ │ │ stream │ cs/check │
│ e/34e368 │ │ sh │ │ │ │ test │ outs/rea │
│ 29 │ │ │ │ │ │ with │ dthedocs │
│ │ │ │ │ │ │ metrics │ .org/use │
│ │ │ │ │ │ │ example │ r_builds │
│ │ │ │ │ │ │ using │ /buildte │
│ │ │ │ │ │ │ assert │ st/check │
│ │ │ │ │ │ │ less │ outs/sta │
│ │ │ │ │ │ │ than │ ble/tuto │
│ │ │ │ │ │ │ │ rials/pe │
│ │ │ │ │ │ │ │ rf_check │
│ │ │ │ │ │ │ │ s/assert │
│ │ │ │ │ │ │ │ _lt.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ run_scri │ script │ generic. │ None │ None │ None │ run a │ /home/do │
│ pt_in_co │ │ local.ba │ │ │ │ python │ cs/check │
│ ntainer/ │ │ sh │ │ │ │ script │ outs/rea │
│ 8bda96fe │ │ │ │ │ │ in │ dthedocs │
│ │ │ │ │ │ │ contain │ .org/use │
│ │ │ │ │ │ │ er │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/co │
│ │ │ │ │ │ │ │ ntainers │
│ │ │ │ │ │ │ │ /run_scr │
│ │ │ │ │ │ │ │ ipt.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_lin │ script │ generic. │ None │ None │ None │ Perform │ /home/do │
│ ecount_e │ │ local.ba │ │ │ │ ing │ cs/check │
│ xception │ │ sh │ │ │ │ file │ outs/rea │
│ s/046886 │ │ │ │ │ │ count │ dthedocs │
│ 93 │ │ │ │ │ │ on │ .org/use │
│ │ │ │ │ │ │ directo │ r_builds │
│ │ │ │ │ │ │ ry or │ /buildte │
│ │ │ │ │ │ │ invalid │ st/check │
│ │ │ │ │ │ │ files │ outs/sta │
│ │ │ │ │ │ │ can │ ble/tuto │
│ │ │ │ │ │ │ result │ rials/te │
│ │ │ │ │ │ │ in │ st_statu │
│ │ │ │ │ │ │ failure │ s/file_l │
│ │ │ │ │ │ │ │ inecount │
│ │ │ │ │ │ │ │ _failure │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ stream_o │ script │ generic. │ builtin_ │ None │ None │ STREAM │ /home/do │
│ penmp_c/ │ │ local.ba │ gcc │ │ │ Microbe │ cs/check │
│ eb138b99 │ │ sh │ │ │ │ nchmark │ outs/rea │
│ │ │ │ │ │ │ C Test │ dthedocs │
│ │ │ │ │ │ │ with │ .org/use │
│ │ │ │ │ │ │ OpenMP │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/co │
│ │ │ │ │ │ │ │ mpilatio │
│ │ │ │ │ │ │ │ n/stream │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ create_b │ script │ generic. │ None │ None │ None │ Create │ /home/do │
│ urst_buf │ │ local.ba │ │ │ │ a burst │ cs/check │
│ fer_exec │ │ sh │ │ │ │ buffer │ outs/rea │
│ utors/b6 │ │ │ │ │ │ for │ dthedocs │
│ 96041a │ │ │ │ │ │ multipl │ .org/use │
│ │ │ │ │ │ │ e │ r_builds │
│ │ │ │ │ │ │ executo │ /buildte │
│ │ │ │ │ │ │ rs │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/bu │
│ │ │ │ │ │ │ │ rstbuffe │
│ │ │ │ │ │ │ │ r_datawa │
│ │ │ │ │ │ │ │ rp_execu │
│ │ │ │ │ │ │ │ tors.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ create_b │ script │ generic. │ None │ None │ None │ Create │ /home/do │
│ urst_buf │ │ local.sh │ │ │ │ a burst │ cs/check │
│ fer_exec │ │ │ │ │ │ buffer │ outs/rea │
│ utors/05 │ │ │ │ │ │ for │ dthedocs │
│ 04124f │ │ │ │ │ │ multipl │ .org/use │
│ │ │ │ │ │ │ e │ r_builds │
│ │ │ │ │ │ │ executo │ /buildte │
│ │ │ │ │ │ │ rs │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/bu │
│ │ │ │ │ │ │ │ rstbuffe │
│ │ │ │ │ │ │ │ r_datawa │
│ │ │ │ │ │ │ │ rp_execu │
│ │ │ │ │ │ │ │ tors.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ metric_f │ script │ generic. │ None │ None │ None │ capture │ /home/do │
│ ile_rege │ │ local.ba │ │ │ │ result │ cs/check │
│ x_with_l │ │ sh │ │ │ │ metric │ outs/rea │
│ inenum_e │ │ │ │ │ │ from │ dthedocs │
│ xample/4 │ │ │ │ │ │ file │ .org/use │
│ 5eb4813 │ │ │ │ │ │ path │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/me │
│ │ │ │ │ │ │ │ trics/me │
│ │ │ │ │ │ │ │ trics_fi │
│ │ │ │ │ │ │ │ le_regex │
│ │ │ │ │ │ │ │ _with_li │
│ │ │ │ │ │ │ │ nenum.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ foo_bar/ │ script │ generic. │ None │ None │ None │ prints │ /home/do │
│ a01b0b6f │ │ local.sh │ │ │ │ variabl │ cs/check │
│ │ │ │ │ │ │ e $FOO │ outs/rea │
│ │ │ │ │ │ │ │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/ma │
│ │ │ │ │ │ │ │ intainer │
│ │ │ │ │ │ │ │ s_exampl │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_e │ script │ generic. │ None │ None │ None │ An │ /home/do │
│ q_invali │ │ local.ba │ │ │ │ invalid │ cs/check │
│ d_metric │ │ sh │ │ │ │ metric │ outs/rea │
│ /6297f61 │ │ │ │ │ │ name │ dthedocs │
│ d │ │ │ │ │ │ will │ .org/use │
│ │ │ │ │ │ │ cause │ r_builds │
│ │ │ │ │ │ │ failure │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/pe │
│ │ │ │ │ │ │ │ rf_check │
│ │ │ │ │ │ │ │ s/assert │
│ │ │ │ │ │ │ │ _eq_exce │
│ │ │ │ │ │ │ │ ptions.y │
│ │ │ │ │ │ │ │ ml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_e │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ q_mismat │ │ local.ba │ │ │ │ test │ cs/check │
│ ch/b9835 │ │ sh │ │ │ │ will │ outs/rea │
│ 021 │ │ │ │ │ │ fail │ dthedocs │
│ │ │ │ │ │ │ because │ .org/use │
│ │ │ │ │ │ │ there │ r_builds │
│ │ │ │ │ │ │ is a │ /buildte │
│ │ │ │ │ │ │ mismatc │ st/check │
│ │ │ │ │ │ │ h in │ outs/sta │
│ │ │ │ │ │ │ metric │ ble/tuto │
│ │ │ │ │ │ │ x │ rials/pe │
│ │ │ │ │ │ │ assert │ rf_check │
│ │ │ │ │ │ │ equalit │ s/assert │
│ │ │ │ │ │ │ y │ _eq_exce │
│ │ │ │ │ │ │ │ ptions.y │
│ │ │ │ │ │ │ │ ml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ executor │ script │ generic. │ None │ None │ None │ Declari │ /home/do │
│ s_sbatch │ │ local.ba │ │ │ │ ng env │ cs/check │
│ _declara │ │ sh │ │ │ │ and │ outs/rea │
│ tion/59f │ │ │ │ │ │ vars by │ dthedocs │
│ 90018 │ │ │ │ │ │ executo │ .org/use │
│ │ │ │ │ │ │ rs │ r_builds │
│ │ │ │ │ │ │ section │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/mu │
│ │ │ │ │ │ │ │ lti_exec │
│ │ │ │ │ │ │ │ utors/ex │
│ │ │ │ │ │ │ │ ecutor_s │
│ │ │ │ │ │ │ │ cheduler │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ executor │ script │ generic. │ None │ None │ None │ Declari │ /home/do │
│ s_sbatch │ │ local.sh │ │ │ │ ng env │ cs/check │
│ _declara │ │ │ │ │ │ and │ outs/rea │
│ tion/eb9 │ │ │ │ │ │ vars by │ dthedocs │
│ 660de │ │ │ │ │ │ executo │ .org/use │
│ │ │ │ │ │ │ rs │ r_builds │
│ │ │ │ │ │ │ section │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/mu │
│ │ │ │ │ │ │ │ lti_exec │
│ │ │ │ │ │ │ │ utors/ex │
│ │ │ │ │ │ │ │ ecutor_s │
│ │ │ │ │ │ │ │ cheduler │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ csh_shel │ script │ generic. │ None │ None │ None │ csh │ /home/do │
│ l/a6f610 │ │ local.cs │ │ │ │ shell │ cs/check │
│ 70 │ │ h │ │ │ │ example │ outs/rea │
│ │ │ │ │ │ │ │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/cs │
│ │ │ │ │ │ │ │ h_shell_ │
│ │ │ │ │ │ │ │ examples │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_and │ script │ generic. │ None │ None │ None │ status │ /home/do │
│ _dir_che │ │ local.ba │ │ │ │ check │ cs/check │
│ cks/1194 │ │ sh │ │ │ │ for │ outs/rea │
│ 3362 │ │ │ │ │ │ files │ dthedocs │
│ │ │ │ │ │ │ and │ .org/use │
│ │ │ │ │ │ │ directo │ r_builds │
│ │ │ │ │ │ │ ries │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/file_a │
│ │ │ │ │ │ │ │ nd_dir_c │
│ │ │ │ │ │ │ │ heck.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ combined │ script │ generic. │ None │ None │ None │ status │ /home/do │
│ _file_an │ │ local.ba │ │ │ │ check │ cs/check │
│ d_dir_ch │ │ sh │ │ │ │ for │ outs/rea │
│ ecks/ce5 │ │ │ │ │ │ files │ dthedocs │
│ dfebe │ │ │ │ │ │ and │ .org/use │
│ │ │ │ │ │ │ directo │ r_builds │
│ │ │ │ │ │ │ ries │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/file_a │
│ │ │ │ │ │ │ │ nd_dir_c │
│ │ │ │ │ │ │ │ heck.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ bash_env │ script │ generic. │ None │ None │ None │ Declare │ /home/do │
│ _variabl │ │ local.ba │ │ │ │ environ │ cs/check │
│ es/2b679 │ │ sh │ │ │ │ ment │ outs/rea │
│ a07 │ │ │ │ │ │ variabl │ dthedocs │
│ │ │ │ │ │ │ es in │ .org/use │
│ │ │ │ │ │ │ default │ r_builds │
│ │ │ │ │ │ │ shell │ /buildte │
│ │ │ │ │ │ │ (bash) │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/en │
│ │ │ │ │ │ │ │ vironmen │
│ │ │ │ │ │ │ │ t.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ csh_env_ │ script │ generic. │ None │ None │ None │ csh │ /home/do │
│ declarat │ │ local.cs │ │ │ │ shell │ cs/check │
│ ion/1752 │ │ h │ │ │ │ example │ outs/rea │
│ 60a0 │ │ │ │ │ │ to │ dthedocs │
│ │ │ │ │ │ │ declare │ .org/use │
│ │ │ │ │ │ │ environ │ r_builds │
│ │ │ │ │ │ │ ment │ /buildte │
│ │ │ │ │ │ │ variabl │ st/check │
│ │ │ │ │ │ │ es │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/en │
│ │ │ │ │ │ │ │ vironmen │
│ │ │ │ │ │ │ │ t.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ tcsh_env │ script │ generic. │ None │ None │ None │ tcsh │ /home/do │
│ _declara │ │ local.cs │ │ │ │ shell │ cs/check │
│ tion/227 │ │ h │ │ │ │ example │ outs/rea │
│ 7b336 │ │ │ │ │ │ to │ dthedocs │
│ │ │ │ │ │ │ declare │ .org/use │
│ │ │ │ │ │ │ environ │ r_builds │
│ │ │ │ │ │ │ ment │ /buildte │
│ │ │ │ │ │ │ variabl │ st/check │
│ │ │ │ │ │ │ es │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/en │
│ │ │ │ │ │ │ │ vironmen │
│ │ │ │ │ │ │ │ t.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ test1/d8 │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ 42f8c7 │ │ local.ba │ │ │ │ test │ cs/check │
│ │ │ sh │ │ │ │ will │ outs/rea │
│ │ │ │ │ │ │ pass │ dthedocs │
│ │ │ │ │ │ │ with │ .org/use │
│ │ │ │ │ │ │ exit 1 │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/jo │
│ │ │ │ │ │ │ │ b_depend │
│ │ │ │ │ │ │ │ ency/ex2 │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ test2/c0 │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ ebc7b6 │ │ local.ba │ │ │ │ test │ cs/check │
│ │ │ sh │ │ │ │ will │ outs/rea │
│ │ │ │ │ │ │ run if │ dthedocs │
│ │ │ │ │ │ │ test1 │ .org/use │
│ │ │ │ │ │ │ has │ r_builds │
│ │ │ │ │ │ │ returnc │ /buildte │
│ │ │ │ │ │ │ ode 1 │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/jo │
│ │ │ │ │ │ │ │ b_depend │
│ │ │ │ │ │ │ │ ency/ex2 │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ test3/03 │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ 3d7430 │ │ local.ba │ │ │ │ test │ cs/check │
│ │ │ sh │ │ │ │ will │ outs/rea │
│ │ │ │ │ │ │ run if │ dthedocs │
│ │ │ │ │ │ │ test1 │ .org/use │
│ │ │ │ │ │ │ has │ r_builds │
│ │ │ │ │ │ │ returnc │ /buildte │
│ │ │ │ │ │ │ ode 1 │ st/check │
│ │ │ │ │ │ │ and │ outs/sta │
│ │ │ │ │ │ │ test2 │ ble/tuto │
│ │ │ │ │ │ │ has │ rials/jo │
│ │ │ │ │ │ │ returnc │ b_depend │
│ │ │ │ │ │ │ ode 2 │ ency/ex2 │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ metric_f │ script │ generic. │ None │ None │ None │ capture │ /home/do │
│ ile_rege │ │ local.ba │ │ │ │ result │ cs/check │
│ x_with_l │ │ sh │ │ │ │ metric │ outs/rea │
│ inenum_f │ │ │ │ │ │ from │ dthedocs │
│ ailure_e │ │ │ │ │ │ file │ .org/use │
│ xample/5 │ │ │ │ │ │ path │ r_builds │
│ d058f9c │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/me │
│ │ │ │ │ │ │ │ trics/me │
│ │ │ │ │ │ │ │ trics_fi │
│ │ │ │ │ │ │ │ le_regex │
│ │ │ │ │ │ │ │ _with_in │
│ │ │ │ │ │ │ │ valid_li │
│ │ │ │ │ │ │ │ nenum.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_cou │ script │ generic. │ None │ None │ None │ file │ /home/do │
│ nt_on_di │ │ local.ba │ │ │ │ count │ cs/check │
│ rectory/ │ │ sh │ │ │ │ check │ outs/rea │
│ 50b51b0d │ │ │ │ │ │ in │ dthedocs │
│ │ │ │ │ │ │ directo │ .org/use │
│ │ │ │ │ │ │ ry │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/file_c │
│ │ │ │ │ │ │ │ ount.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_cou │ script │ generic. │ None │ None │ None │ file │ /home/do │
│ nt_by_ex │ │ local.ba │ │ │ │ count │ cs/check │
│ tension/ │ │ sh │ │ │ │ by │ outs/rea │
│ d8f8d161 │ │ │ │ │ │ extensi │ dthedocs │
│ │ │ │ │ │ │ on │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/file_c │
│ │ │ │ │ │ │ │ ount.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ post_run │ script │ generic. │ None │ None │ None │ post │ /home/do │
│ _example │ │ local.ba │ │ │ │ run │ cs/check │
│ /7bae5f9 │ │ sh │ │ │ │ example │ outs/rea │
│ 2 │ │ │ │ │ │ that │ dthedocs │
│ │ │ │ │ │ │ will │ .org/use │
│ │ │ │ │ │ │ remove │ r_builds │
│ │ │ │ │ │ │ symboli │ /buildte │
│ │ │ │ │ │ │ c link │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/po │
│ │ │ │ │ │ │ │ st_run.y │
│ │ │ │ │ │ │ │ ml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ executor │ script │ generic. │ None │ None │ None │ Declari │ /home/do │
│ s_vars_e │ │ local.ba │ │ │ │ ng env │ cs/check │
│ nv_decla │ │ sh │ │ │ │ and │ outs/rea │
│ ration/1 │ │ │ │ │ │ vars by │ dthedocs │
│ 59f7ff1 │ │ │ │ │ │ executo │ .org/use │
│ │ │ │ │ │ │ rs │ r_builds │
│ │ │ │ │ │ │ section │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/mu │
│ │ │ │ │ │ │ │ lti_exec │
│ │ │ │ │ │ │ │ utors/ex │
│ │ │ │ │ │ │ │ ecutors_ │
│ │ │ │ │ │ │ │ var_env_ │
│ │ │ │ │ │ │ │ declarat │
│ │ │ │ │ │ │ │ ion.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ executor │ script │ generic. │ None │ None │ None │ Declari │ /home/do │
│ s_vars_e │ │ local.sh │ │ │ │ ng env │ cs/check │
│ nv_decla │ │ │ │ │ │ and │ outs/rea │
│ ration/3 │ │ │ │ │ │ vars by │ dthedocs │
│ d23f714 │ │ │ │ │ │ executo │ .org/use │
│ │ │ │ │ │ │ rs │ r_builds │
│ │ │ │ │ │ │ section │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/mu │
│ │ │ │ │ │ │ │ lti_exec │
│ │ │ │ │ │ │ │ utors/ex │
│ │ │ │ │ │ │ │ ecutors_ │
│ │ │ │ │ │ │ │ var_env_ │
│ │ │ │ │ │ │ │ declarat │
│ │ │ │ │ │ │ │ ion.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ hello_wo │ script │ generic. │ None │ None │ None │ hello │ /home/do │
│ rld/cca2 │ │ local.ba │ │ │ │ world │ cs/check │
│ 47dc │ │ sh │ │ │ │ example │ outs/rea │
│ │ │ │ │ │ │ │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/he │
│ │ │ │ │ │ │ │ llo_worl │
│ │ │ │ │ │ │ │ d.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ metric_f │ script │ generic. │ None │ None │ None │ capture │ /home/do │
│ ile_rege │ │ local.ba │ │ │ │ result │ cs/check │
│ x_invali │ │ sh │ │ │ │ metric │ outs/rea │
│ d_file/e │ │ │ │ │ │ from │ dthedocs │
│ f702575 │ │ │ │ │ │ file │ .org/use │
│ │ │ │ │ │ │ path │ r_builds │
│ │ │ │ │ │ │ when we │ /buildte │
│ │ │ │ │ │ │ have │ st/check │
│ │ │ │ │ │ │ invalid │ outs/sta │
│ │ │ │ │ │ │ file │ ble/tuto │
│ │ │ │ │ │ │ path │ rials/me │
│ │ │ │ │ │ │ │ trics/me │
│ │ │ │ │ │ │ │ trics_fi │
│ │ │ │ │ │ │ │ le_regex │
│ │ │ │ │ │ │ │ _invalid │
│ │ │ │ │ │ │ │ _file.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ contains │ script │ generic. │ None │ None │ None │ Status │ /home/do │
│ _and_not │ │ local.ba │ │ │ │ check │ cs/check │
│ _contain │ │ sh │ │ │ │ based │ outs/rea │
│ s/bba5ae │ │ │ │ │ │ on │ dthedocs │
│ c7 │ │ │ │ │ │ contain │ .org/use │
│ │ │ │ │ │ │ s and │ r_builds │
│ │ │ │ │ │ │ not │ /buildte │
│ │ │ │ │ │ │ contain │ st/check │
│ │ │ │ │ │ │ s where │ outs/sta │
│ │ │ │ │ │ │ test │ ble/tuto │
│ │ │ │ │ │ │ pass │ rials/pe │
│ │ │ │ │ │ │ │ rf_check │
│ │ │ │ │ │ │ │ s/contai │
│ │ │ │ │ │ │ │ ns.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_c │ script │ generic. │ None │ None │ None │ Status │ /home/do │
│ ontains_ │ │ local.ba │ │ │ │ check │ cs/check │
│ fail/7c2 │ │ sh │ │ │ │ based │ outs/rea │
│ 8465c │ │ │ │ │ │ on │ dthedocs │
│ │ │ │ │ │ │ contain │ .org/use │
│ │ │ │ │ │ │ s where │ r_builds │
│ │ │ │ │ │ │ test │ /buildte │
│ │ │ │ │ │ │ fails │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/pe │
│ │ │ │ │ │ │ │ rf_check │
│ │ │ │ │ │ │ │ s/contai │
│ │ │ │ │ │ │ │ ns.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ runtime_ │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ test/13f │ │ local.ba │ │ │ │ test │ cs/check │
│ 4de0e │ │ sh │ │ │ │ will │ outs/rea │
│ │ │ │ │ │ │ sleep 5 │ dthedocs │
│ │ │ │ │ │ │ second │ .org/use │
│ │ │ │ │ │ │ but │ r_builds │
│ │ │ │ │ │ │ will │ /buildte │
│ │ │ │ │ │ │ fail │ st/check │
│ │ │ │ │ │ │ due to │ outs/sta │
│ │ │ │ │ │ │ runtime │ ble/tuto │
│ │ │ │ │ │ │ 2sec │ rials/jo │
│ │ │ │ │ │ │ │ b_depend │
│ │ │ │ │ │ │ │ ency/ex4 │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ runtime_ │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ test_pas │ │ local.ba │ │ │ │ test │ cs/check │
│ s/eb76e1 │ │ sh │ │ │ │ will │ outs/rea │
│ 8a │ │ │ │ │ │ run │ dthedocs │
│ │ │ │ │ │ │ when │ .org/use │
│ │ │ │ │ │ │ runtime │ r_builds │
│ │ │ │ │ │ │ _test_p │ /buildte │
│ │ │ │ │ │ │ ass is │ st/check │
│ │ │ │ │ │ │ PASS │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/jo │
│ │ │ │ │ │ │ │ b_depend │
│ │ │ │ │ │ │ │ ency/ex4 │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ runtime_ │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ test_fai │ │ local.ba │ │ │ │ test │ cs/check │
│ l/94d1ed │ │ sh │ │ │ │ will │ outs/rea │
│ 98 │ │ │ │ │ │ run │ dthedocs │
│ │ │ │ │ │ │ when │ .org/use │
│ │ │ │ │ │ │ runtime │ r_builds │
│ │ │ │ │ │ │ _test_p │ /buildte │
│ │ │ │ │ │ │ ass is │ st/check │
│ │ │ │ │ │ │ FAIL │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/jo │
│ │ │ │ │ │ │ │ b_depend │
│ │ │ │ │ │ │ │ ency/ex4 │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_r │ script │ generic. │ None │ None │ None │ Pass │ /home/do │
│ egex_std │ │ local.ba │ │ │ │ test │ cs/check │
│ out_pass │ │ sh │ │ │ │ based │ outs/rea │
│ /5d6f03f │ │ │ │ │ │ on │ dthedocs │
│ 7 │ │ │ │ │ │ regular │ .org/use │
│ │ │ │ │ │ │ express │ r_builds │
│ │ │ │ │ │ │ ion │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/status │
│ │ │ │ │ │ │ │ _regex.y │
│ │ │ │ │ │ │ │ ml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_r │ script │ generic. │ None │ None │ None │ Pass │ /home/do │
│ egex_std │ │ local.ba │ │ │ │ test │ cs/check │
│ out_fail │ │ sh │ │ │ │ based │ outs/rea │
│ /a64025a │ │ │ │ │ │ on │ dthedocs │
│ e │ │ │ │ │ │ regular │ .org/use │
│ │ │ │ │ │ │ express │ r_builds │
│ │ │ │ │ │ │ ion │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/status │
│ │ │ │ │ │ │ │ _regex.y │
│ │ │ │ │ │ │ │ ml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_r │ script │ generic. │ None │ None │ None │ Pass │ /home/do │
│ egex_std │ │ local.ba │ │ │ │ test │ cs/check │
│ err_pass │ │ sh │ │ │ │ based │ outs/rea │
│ /a49753f │ │ │ │ │ │ on │ dthedocs │
│ 5 │ │ │ │ │ │ regular │ .org/use │
│ │ │ │ │ │ │ express │ r_builds │
│ │ │ │ │ │ │ ion │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/status │
│ │ │ │ │ │ │ │ _regex.y │
│ │ │ │ │ │ │ │ ml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_r │ script │ generic. │ None │ None │ None │ Pass │ /home/do │
│ egex_std │ │ local.ba │ │ │ │ test │ cs/check │
│ err_fail │ │ sh │ │ │ │ based │ outs/rea │
│ /c1a6041 │ │ │ │ │ │ on │ dthedocs │
│ d │ │ │ │ │ │ regular │ .org/use │
│ │ │ │ │ │ │ express │ r_builds │
│ │ │ │ │ │ │ ion │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/status │
│ │ │ │ │ │ │ │ _regex.y │
│ │ │ │ │ │ │ │ ml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ jobA/490 │ script │ generic. │ None │ None │ None │ no job │ /home/do │
│ 6e705 │ │ local.ba │ │ │ │ depende │ cs/check │
│ │ │ sh │ │ │ │ ncy │ outs/rea │
│ │ │ │ │ │ │ │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/jo │
│ │ │ │ │ │ │ │ b_depend │
│ │ │ │ │ │ │ │ ency/ex1 │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ jobB/373 │ script │ generic. │ None │ None │ None │ job │ /home/do │
│ 443f1 │ │ local.ba │ │ │ │ depende │ cs/check │
│ │ │ sh │ │ │ │ ncy on │ outs/rea │
│ │ │ │ │ │ │ jobA │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/jo │
│ │ │ │ │ │ │ │ b_depend │
│ │ │ │ │ │ │ │ ency/ex1 │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ jobC/341 │ script │ generic. │ None │ None │ None │ job │ /home/do │
│ c0428 │ │ local.ba │ │ │ │ depende │ cs/check │
│ │ │ sh │ │ │ │ ncy on │ outs/rea │
│ │ │ │ │ │ │ jobA │ dthedocs │
│ │ │ │ │ │ │ and │ .org/use │
│ │ │ │ │ │ │ jobB │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/jo │
│ │ │ │ │ │ │ │ b_depend │
│ │ │ │ │ │ │ │ ency/ex1 │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ containe │ script │ generic. │ None │ None │ None │ run │ /home/do │
│ r_comman │ │ local.ba │ │ │ │ arbitra │ cs/check │
│ ds_ubunt │ │ sh │ │ │ │ ry │ outs/rea │
│ u/47c9e2 │ │ │ │ │ │ linux │ dthedocs │
│ a4 │ │ │ │ │ │ command │ .org/use │
│ │ │ │ │ │ │ s in │ r_builds │
│ │ │ │ │ │ │ ubuntu │ /buildte │
│ │ │ │ │ │ │ contain │ st/check │
│ │ │ │ │ │ │ er │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/co │
│ │ │ │ │ │ │ │ ntainers │
│ │ │ │ │ │ │ │ /run_com │
│ │ │ │ │ │ │ │ mands.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ containe │ script │ generic. │ None │ None │ None │ run │ /home/do │
│ r_option │ │ local.ba │ │ │ │ arbitra │ cs/check │
│ s/90b32c │ │ sh │ │ │ │ ry │ outs/rea │
│ c8 │ │ │ │ │ │ linux │ dthedocs │
│ │ │ │ │ │ │ command │ .org/use │
│ │ │ │ │ │ │ s in │ r_builds │
│ │ │ │ │ │ │ ubuntu │ /buildte │
│ │ │ │ │ │ │ contain │ st/check │
│ │ │ │ │ │ │ er │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/co │
│ │ │ │ │ │ │ │ ntainers │
│ │ │ │ │ │ │ │ /run_com │
│ │ │ │ │ │ │ │ mands.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ exit1_fa │ script │ generic. │ None │ None │ None │ exit 1 │ /home/do │
│ il/45608 │ │ local.ba │ │ │ │ by │ cs/check │
│ 61c │ │ sh │ │ │ │ default │ outs/rea │
│ │ │ │ │ │ │ is FAIL │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/pass_r │
│ │ │ │ │ │ │ │ eturncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ exit1_pa │ script │ generic. │ None │ None │ None │ report │ /home/do │
│ ss/74556 │ │ local.ba │ │ │ │ exit 1 │ cs/check │
│ 581 │ │ sh │ │ │ │ as PASS │ outs/rea │
│ │ │ │ │ │ │ │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/pass_r │
│ │ │ │ │ │ │ │ eturncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ returnco │ script │ generic. │ None │ None │ None │ exit 2 │ /home/do │
│ de_list_ │ │ local.ba │ │ │ │ failed │ cs/check │
│ mismatch │ │ sh │ │ │ │ since │ outs/rea │
│ /280b499 │ │ │ │ │ │ it │ dthedocs │
│ f │ │ │ │ │ │ failed │ .org/use │
│ │ │ │ │ │ │ to │ r_builds │
│ │ │ │ │ │ │ match │ /buildte │
│ │ │ │ │ │ │ returnc │ st/check │
│ │ │ │ │ │ │ ode 1 │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/pass_r │
│ │ │ │ │ │ │ │ eturncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ returnco │ script │ generic. │ None │ None │ None │ exit │ /home/do │
│ de_int_m │ │ local.ba │ │ │ │ 128 │ cs/check │
│ atch/22f │ │ sh │ │ │ │ matches │ outs/rea │
│ 8b424 │ │ │ │ │ │ returnc │ dthedocs │
│ │ │ │ │ │ │ ode 128 │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/pass_r │
│ │ │ │ │ │ │ │ eturncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_cou │ script │ generic. │ None │ None │ None │ Count │ /home/do │
│ nt_by_fi │ │ local.ba │ │ │ │ the │ cs/check │
│ letype/5 │ │ sh │ │ │ │ number │ outs/rea │
│ e1e867d │ │ │ │ │ │ of │ dthedocs │
│ │ │ │ │ │ │ directo │ .org/use │
│ │ │ │ │ │ │ ries │ r_builds │
│ │ │ │ │ │ │ and │ /buildte │
│ │ │ │ │ │ │ symboli │ st/check │
│ │ │ │ │ │ │ c links │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/file_c │
│ │ │ │ │ │ │ │ ount_fil │
│ │ │ │ │ │ │ │ etype.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_l │ script │ generic. │ None │ None │ None │ Using │ /home/do │
│ ogical_a │ │ local.ba │ │ │ │ logical │ cs/check │
│ nd/6827d │ │ sh │ │ │ │ AND to │ outs/rea │
│ 7c8 │ │ │ │ │ │ check │ dthedocs │
│ │ │ │ │ │ │ status │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/mode.y │
│ │ │ │ │ │ │ │ ml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_l │ script │ generic. │ None │ None │ None │ Using │ /home/do │
│ ogical_o │ │ local.ba │ │ │ │ logical │ cs/check │
│ r/f39a73 │ │ sh │ │ │ │ OR to │ outs/rea │
│ 2e │ │ │ │ │ │ check │ dthedocs │
│ │ │ │ │ │ │ status │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/mode.y │
│ │ │ │ │ │ │ │ ml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ circle_a │ script │ generic. │ None │ None │ None │ Calcula │ /home/do │
│ rea/067a │ │ local.ba │ │ │ │ te │ cs/check │
│ 0897 │ │ sh │ │ │ │ circle │ outs/rea │
│ │ │ │ │ │ │ of area │ dthedocs │
│ │ │ │ │ │ │ given a │ .org/use │
│ │ │ │ │ │ │ radius │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/py │
│ │ │ │ │ │ │ │ thon-she │
│ │ │ │ │ │ │ │ ll.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_cou │ script │ generic. │ None │ None │ None │ file │ /home/do │
│ nt_by_ex │ │ local.ba │ │ │ │ count │ cs/check │
│ pression │ │ sh │ │ │ │ by │ outs/rea │
│ /17fa294 │ │ │ │ │ │ express │ dthedocs │
│ d │ │ │ │ │ │ ion │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/file_c │
│ │ │ │ │ │ │ │ ount_pat │
│ │ │ │ │ │ │ │ tern.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_ext │ script │ generic. │ None │ None │ None │ file │ /home/do │
│ ension_a │ │ local.ba │ │ │ │ count │ cs/check │
│ nd_filep │ │ sh │ │ │ │ by file │ outs/rea │
│ attern/e │ │ │ │ │ │ extensi │ dthedocs │
│ 6cd7db3 │ │ │ │ │ │ on and │ .org/use │
│ │ │ │ │ │ │ file │ r_builds │
│ │ │ │ │ │ │ pattern │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/file_c │
│ │ │ │ │ │ │ │ ount_pat │
│ │ │ │ │ │ │ │ tern.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ metric_r │ script │ generic. │ None │ None │ None │ capture │ /home/do │
│ egex_exa │ │ local.ba │ │ │ │ metric │ cs/check │
│ mple_wit │ │ sh │ │ │ │ with │ outs/rea │
│ h_re/e22 │ │ │ │ │ │ differe │ dthedocs │
│ fd2d0 │ │ │ │ │ │ nt │ .org/use │
│ │ │ │ │ │ │ regex │ r_builds │
│ │ │ │ │ │ │ types │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/me │
│ │ │ │ │ │ │ │ trics/me │
│ │ │ │ │ │ │ │ trics_wi │
│ │ │ │ │ │ │ │ th_regex │
│ │ │ │ │ │ │ │ _type.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ unskippe │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ d/b6896f │ │ local.ba │ │ │ │ test is │ cs/check │
│ 2b │ │ sh │ │ │ │ not │ outs/rea │
│ │ │ │ │ │ │ skipped │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/sk │
│ │ │ │ │ │ │ │ ip_tests │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_e │ script │ generic. │ None │ None │ None │ Test │ /home/do │
│ q_exampl │ │ local.ba │ │ │ │ for │ cs/check │
│ e/26394a │ │ sh │ │ │ │ assert │ outs/rea │
│ d7 │ │ │ │ │ │ equalit │ dthedocs │
│ │ │ │ │ │ │ y │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/pe │
│ │ │ │ │ │ │ │ rf_check │
│ │ │ │ │ │ │ │ s/assert │
│ │ │ │ │ │ │ │ _eq.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_n │ script │ generic. │ None │ None │ None │ Test │ /home/do │
│ e_exampl │ │ local.ba │ │ │ │ for │ cs/check │
│ e/963974 │ │ sh │ │ │ │ assert │ outs/rea │
│ ad │ │ │ │ │ │ not │ dthedocs │
│ │ │ │ │ │ │ equal │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/pe │
│ │ │ │ │ │ │ │ rf_check │
│ │ │ │ │ │ │ │ s/assert │
│ │ │ │ │ │ │ │ _ne.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ metric_r │ script │ generic. │ None │ None │ None │ capture │ /home/do │
│ egex_wit │ │ local.ba │ │ │ │ result │ cs/check │
│ h_linenu │ │ sh │ │ │ │ metric │ outs/rea │
│ m_exampl │ │ │ │ │ │ from │ dthedocs │
│ e/c5249f │ │ │ │ │ │ output │ .org/use │
│ ac │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/me │
│ │ │ │ │ │ │ │ trics/me │
│ │ │ │ │ │ │ │ trics_re │
│ │ │ │ │ │ │ │ gex_with │
│ │ │ │ │ │ │ │ _linenum │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ python_h │ script │ generic. │ None │ None │ None │ Hello │ /home/do │
│ ello/802 │ │ local.ba │ │ │ │ World │ cs/check │
│ ec06b │ │ sh │ │ │ │ python │ outs/rea │
│ │ │ │ │ │ │ │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/py │
│ │ │ │ │ │ │ │ thon-hel │
│ │ │ │ │ │ │ │ lo.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ regex_on │ script │ generic. │ None │ None │ None │ Test │ /home/do │
│ _multipl │ │ local.ba │ │ │ │ regex │ cs/check │
│ e_files/ │ │ sh │ │ │ │ on │ outs/rea │
│ 2d0bff11 │ │ │ │ │ │ multipl │ dthedocs │
│ │ │ │ │ │ │ e files │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/regex_ │
│ │ │ │ │ │ │ │ on_filen │
│ │ │ │ │ │ │ │ ame.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ regex_on │ script │ generic. │ None │ None │ None │ Test │ /home/do │
│ _directo │ │ local.ba │ │ │ │ regex │ cs/check │
│ ry_not_s │ │ sh │ │ │ │ on │ outs/rea │
│ upported │ │ │ │ │ │ directo │ dthedocs │
│ /0b2f52b │ │ │ │ │ │ ry is │ .org/use │
│ 7 │ │ │ │ │ │ not │ r_builds │
│ │ │ │ │ │ │ support │ /buildte │
│ │ │ │ │ │ │ ed │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/regex_ │
│ │ │ │ │ │ │ │ on_filen │
│ │ │ │ │ │ │ │ ame.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_exp │ script │ generic. │ None │ None │ None │ Test │ /home/do │
│ ansion_s │ │ local.ba │ │ │ │ regex │ cs/check │
│ upported │ │ sh │ │ │ │ with │ outs/rea │
│ /976efa7 │ │ │ │ │ │ variabl │ dthedocs │
│ 8 │ │ │ │ │ │ e and │ .org/use │
│ │ │ │ │ │ │ shell │ r_builds │
│ │ │ │ │ │ │ expansi │ /buildte │
│ │ │ │ │ │ │ on │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/regex_ │
│ │ │ │ │ │ │ │ on_filen │
│ │ │ │ │ │ │ │ ame.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ linecoun │ script │ generic. │ None │ None │ None │ Write │ /home/do │
│ t_stdout │ │ local.ba │ │ │ │ 10 │ cs/check │
│ /ce05edf │ │ sh │ │ │ │ lines │ outs/rea │
│ 0 │ │ │ │ │ │ to │ dthedocs │
│ │ │ │ │ │ │ stdout │ .org/use │
│ │ │ │ │ │ │ and run │ r_builds │
│ │ │ │ │ │ │ linecou │ /buildte │
│ │ │ │ │ │ │ nt │ st/check │
│ │ │ │ │ │ │ check │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/lineco │
│ │ │ │ │ │ │ │ unt.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ linecoun │ script │ generic. │ None │ None │ None │ Write │ /home/do │
│ t_stderr │ │ local.ba │ │ │ │ 10 │ cs/check │
│ _mismatc │ │ sh │ │ │ │ lines │ outs/rea │
│ h/bf18c6 │ │ │ │ │ │ to │ dthedocs │
│ 17 │ │ │ │ │ │ stderr │ .org/use │
│ │ │ │ │ │ │ and run │ r_builds │
│ │ │ │ │ │ │ linecou │ /buildte │
│ │ │ │ │ │ │ nt │ st/check │
│ │ │ │ │ │ │ check │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/lineco │
│ │ │ │ │ │ │ │ unt.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ pass_tes │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ t/08ed46 │ │ local.ba │ │ │ │ test │ cs/check │
│ b1 │ │ sh │ │ │ │ will │ outs/rea │
│ │ │ │ │ │ │ always │ dthedocs │
│ │ │ │ │ │ │ pass │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/jo │
│ │ │ │ │ │ │ │ b_depend │
│ │ │ │ │ │ │ │ ency/ex3 │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ fail_tes │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ t/6a761e │ │ local.ba │ │ │ │ test │ cs/check │
│ fb │ │ sh │ │ │ │ will │ outs/rea │
│ │ │ │ │ │ │ run if │ dthedocs │
│ │ │ │ │ │ │ test │ .org/use │
│ │ │ │ │ │ │ 'pass_t │ r_builds │
│ │ │ │ │ │ │ est' is │ /buildte │
│ │ │ │ │ │ │ in │ st/check │
│ │ │ │ │ │ │ state │ outs/sta │
│ │ │ │ │ │ │ 'PASS' │ ble/tuto │
│ │ │ │ │ │ │ │ rials/jo │
│ │ │ │ │ │ │ │ b_depend │
│ │ │ │ │ │ │ │ ency/ex3 │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ pass_and │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ _fail_te │ │ local.ba │ │ │ │ test │ cs/check │
│ st/53812 │ │ sh │ │ │ │ will │ outs/rea │
│ 59e │ │ │ │ │ │ run if │ dthedocs │
│ │ │ │ │ │ │ pass_te │ .org/use │
│ │ │ │ │ │ │ st is │ r_builds │
│ │ │ │ │ │ │ 'PASS' │ /buildte │
│ │ │ │ │ │ │ and │ st/check │
│ │ │ │ │ │ │ fail_te │ outs/sta │
│ │ │ │ │ │ │ st is │ ble/tuto │
│ │ │ │ │ │ │ 'FAIL' │ rials/jo │
│ │ │ │ │ │ │ │ b_depend │
│ │ │ │ │ │ │ │ ency/ex3 │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ final_te │ script │ generic. │ None │ None │ None │ Test │ /home/do │
│ st/a2e12 │ │ local.ba │ │ │ │ will │ cs/check │
│ fe8 │ │ sh │ │ │ │ run │ outs/rea │
│ │ │ │ │ │ │ after │ dthedocs │
│ │ │ │ │ │ │ 'pass_t │ .org/use │
│ │ │ │ │ │ │ est', │ r_builds │
│ │ │ │ │ │ │ 'fail_t │ /buildte │
│ │ │ │ │ │ │ est', │ st/check │
│ │ │ │ │ │ │ and │ outs/sta │
│ │ │ │ │ │ │ 'pass_a │ ble/tuto │
│ │ │ │ │ │ │ nd_fail │ rials/jo │
│ │ │ │ │ │ │ _test' │ b_depend │
│ │ │ │ │ │ │ │ ency/ex3 │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ hello_wo │ script │ generic. │ None │ None │ None │ run │ /home/do │
│ rld_dock │ │ local.ba │ │ │ │ hello-w │ cs/check │
│ er/9f444 │ │ sh │ │ │ │ orld │ outs/rea │
│ dd2 │ │ │ │ │ │ contain │ dthedocs │
│ │ │ │ │ │ │ er with │ .org/use │
│ │ │ │ │ │ │ docker │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/co │
│ │ │ │ │ │ │ │ ntainers │
│ │ │ │ │ │ │ │ /hello_w │
│ │ │ │ │ │ │ │ orld.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_l │ script │ generic. │ None │ None │ None │ Run │ /home/do │
│ e_exampl │ │ local.ba │ │ │ │ stream │ cs/check │
│ e/c96cd4 │ │ sh │ │ │ │ test │ outs/rea │
│ 9a │ │ │ │ │ │ with │ dthedocs │
│ │ │ │ │ │ │ metrics │ .org/use │
│ │ │ │ │ │ │ example │ r_builds │
│ │ │ │ │ │ │ using │ /buildte │
│ │ │ │ │ │ │ assert │ st/check │
│ │ │ │ │ │ │ less │ outs/sta │
│ │ │ │ │ │ │ than │ ble/tuto │
│ │ │ │ │ │ │ equal │ rials/pe │
│ │ │ │ │ │ │ │ rf_check │
│ │ │ │ │ │ │ │ s/assert │
│ │ │ │ │ │ │ │ _le.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ re.searc │ script │ generic. │ None │ None │ None │ Test │ /home/do │
│ h.stdout │ │ local.ba │ │ │ │ re.sear │ cs/check │
│ /41bec15 │ │ sh │ │ │ │ ch on │ outs/rea │
│ d │ │ │ │ │ │ stdout │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/specif │
│ │ │ │ │ │ │ │ y_regex_ │
│ │ │ │ │ │ │ │ type.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ re.match │ script │ generic. │ None │ None │ None │ Test │ /home/do │
│ .stdout/ │ │ local.ba │ │ │ │ re.matc │ cs/check │
│ 29e68ebe │ │ sh │ │ │ │ h on │ outs/rea │
│ │ │ │ │ │ │ stdout │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/specif │
│ │ │ │ │ │ │ │ y_regex_ │
│ │ │ │ │ │ │ │ type.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ re.fullm │ script │ generic. │ None │ None │ None │ Test │ /home/do │
│ atch.std │ │ local.ba │ │ │ │ re.full │ cs/check │
│ out/b09a │ │ sh │ │ │ │ match │ outs/rea │
│ 42ac │ │ │ │ │ │ on │ dthedocs │
│ │ │ │ │ │ │ stdout │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/specif │
│ │ │ │ │ │ │ │ y_regex_ │
│ │ │ │ │ │ │ │ type.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ re.match │ script │ generic. │ None │ None │ None │ Test │ /home/do │
│ _on_file │ │ local.ba │ │ │ │ re.matc │ cs/check │
│ _regex/0 │ │ sh │ │ │ │ h on │ outs/rea │
│ ec7c3e4 │ │ │ │ │ │ file │ dthedocs │
│ │ │ │ │ │ │ regex │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/specif │
│ │ │ │ │ │ │ │ y_regex_ │
│ │ │ │ │ │ │ │ type.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_exi │ script │ generic. │ None │ None │ None │ this │ /home/do │
│ sts_pass │ │ local.ba │ │ │ │ test │ cs/check │
│ /91cc71e │ │ sh │ │ │ │ will │ outs/rea │
│ 6 │ │ │ │ │ │ pass │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/file_e │
│ │ │ │ │ │ │ │ xists_wi │
│ │ │ │ │ │ │ │ th_numbe │
│ │ │ │ │ │ │ │ r.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ linux_st │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ rict_tes │ │ local.ba │ │ │ │ example │ cs/check │
│ t/6e11be │ │ sh │ │ │ │ test │ outs/rea │
│ 50 │ │ │ │ │ │ will │ dthedocs │
│ │ │ │ │ │ │ show │ .org/use │
│ │ │ │ │ │ │ how │ r_builds │
│ │ │ │ │ │ │ returnc │ /buildte │
│ │ │ │ │ │ │ ode │ st/check │
│ │ │ │ │ │ │ will │ outs/sta │
│ │ │ │ │ │ │ change │ ble/tuto │
│ │ │ │ │ │ │ when │ rials/st │
│ │ │ │ │ │ │ using │ rict_exa │
│ │ │ │ │ │ │ --stric │ mple.yml │
│ │ │ │ │ │ │ t flag │ │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ stream_t │ script │ generic. │ None │ None │ None │ Run │ /home/do │
│ est/eaca │ │ local.ba │ │ │ │ stream │ cs/check │
│ 7ba8 │ │ sh │ │ │ │ test │ outs/rea │
│ │ │ │ │ │ │ with │ dthedocs │
│ │ │ │ │ │ │ metrics │ .org/use │
│ │ │ │ │ │ │ example │ r_builds │
│ │ │ │ │ │ │ using │ /buildte │
│ │ │ │ │ │ │ assert │ st/check │
│ │ │ │ │ │ │ greater │ outs/sta │
│ │ │ │ │ │ │ equal │ ble/tuto │
│ │ │ │ │ │ │ │ rials/pe │
│ │ │ │ │ │ │ │ rf_check │
│ │ │ │ │ │ │ │ s/assert │
│ │ │ │ │ │ │ │ _ge.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ gcc_vers │ script │ generic. │ None │ None │ None │ Print │ /home/do │
│ ion/ef88 │ │ local.ba │ │ │ │ gcc │ cs/check │
│ ea67 │ │ sh │ │ │ │ version │ outs/rea │
│ │ │ │ │ │ │ │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/gc │
│ │ │ │ │ │ │ │ c_versio │
│ │ │ │ │ │ │ │ n.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ symlink_ │ script │ generic. │ None │ None │ None │ status │ /home/do │
│ test/dc2 │ │ local.ba │ │ │ │ check │ cs/check │
│ 83268 │ │ sh │ │ │ │ based │ outs/rea │
│ │ │ │ │ │ │ on │ dthedocs │
│ │ │ │ │ │ │ symboli │ .org/use │
│ │ │ │ │ │ │ c link │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/is_sym │
│ │ │ │ │ │ │ │ link.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ metric_r │ script │ generic. │ None │ None │ None │ invalid │ /home/do │
│ egex_lin │ │ local.ba │ │ │ │ linenum │ cs/check │
│ enum_fai │ │ sh │ │ │ │ can │ outs/rea │
│ lure_exa │ │ │ │ │ │ result │ dthedocs │
│ mple/76d │ │ │ │ │ │ in │ .org/use │
│ 6c154 │ │ │ │ │ │ failure │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/me │
│ │ │ │ │ │ │ │ trics/me │
│ │ │ │ │ │ │ │ trics_re │
│ │ │ │ │ │ │ │ gex_with │
│ │ │ │ │ │ │ │ _invalid │
│ │ │ │ │ │ │ │ _linenum │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ bind_mou │ script │ generic. │ None │ None │ None │ run a │ /home/do │
│ nt_in_co │ │ local.ba │ │ │ │ python │ cs/check │
│ ntainer/ │ │ sh │ │ │ │ script │ outs/rea │
│ c5b00bad │ │ │ │ │ │ in │ dthedocs │
│ │ │ │ │ │ │ contain │ .org/use │
│ │ │ │ │ │ │ er │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/co │
│ │ │ │ │ │ │ │ ntainers │
│ │ │ │ │ │ │ │ /bind_mo │
│ │ │ │ │ │ │ │ unts.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ variable │ script │ generic. │ None │ None │ None │ Declare │ /home/do │
│ s_bash/6 │ │ local.ba │ │ │ │ shell │ cs/check │
│ 8c3a124 │ │ sh │ │ │ │ variabl │ outs/rea │
│ │ │ │ │ │ │ es in │ dthedocs │
│ │ │ │ │ │ │ bash │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/va │
│ │ │ │ │ │ │ │ rs.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ multiple │ script │ generic. │ None │ None │ None │ run │ /home/do │
│ _executo │ │ local.ba │ │ │ │ test │ cs/check │
│ rs/2ae40 │ │ sh │ │ │ │ with │ outs/rea │
│ 34b │ │ │ │ │ │ executo │ dthedocs │
│ │ │ │ │ │ │ r │ .org/use │
│ │ │ │ │ │ │ generic │ r_builds │
│ │ │ │ │ │ │ .local. │ /buildte │
│ │ │ │ │ │ │ bash │ st/check │
│ │ │ │ │ │ │ and │ outs/sta │
│ │ │ │ │ │ │ generic │ ble/tuto │
│ │ │ │ │ │ │ .local. │ rials/mu │
│ │ │ │ │ │ │ sh │ lti_exec │
│ │ │ │ │ │ │ executo │ utors/ex │
│ │ │ │ │ │ │ r │ ecutor_r │
│ │ │ │ │ │ │ │ egex_scr │
│ │ │ │ │ │ │ │ ipt.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ multiple │ script │ generic. │ None │ None │ None │ run │ /home/do │
│ _executo │ │ local.sh │ │ │ │ test │ cs/check │
│ rs/95ee7 │ │ │ │ │ │ with │ outs/rea │
│ 657 │ │ │ │ │ │ executo │ dthedocs │
│ │ │ │ │ │ │ r │ .org/use │
│ │ │ │ │ │ │ generic │ r_builds │
│ │ │ │ │ │ │ .local. │ /buildte │
│ │ │ │ │ │ │ bash │ st/check │
│ │ │ │ │ │ │ and │ outs/sta │
│ │ │ │ │ │ │ generic │ ble/tuto │
│ │ │ │ │ │ │ .local. │ rials/mu │
│ │ │ │ │ │ │ sh │ lti_exec │
│ │ │ │ │ │ │ executo │ utors/ex │
│ │ │ │ │ │ │ r │ ecutor_r │
│ │ │ │ │ │ │ │ egex_scr │
│ │ │ │ │ │ │ │ ipt.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ hello_wo │ script │ generic. │ builtin_ │ None │ None │ Hello │ /home/do │
│ rld_c_cp │ │ local.ba │ gcc │ │ │ world │ cs/check │
│ p/8f6c3d │ │ sh │ │ │ │ compila │ outs/rea │
│ 5d │ │ │ │ │ │ tion in │ dthedocs │
│ │ │ │ │ │ │ C and │ .org/use │
│ │ │ │ │ │ │ C++ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/co │
│ │ │ │ │ │ │ │ mpilatio │
│ │ │ │ │ │ │ │ n/hello_ │
│ │ │ │ │ │ │ │ world_co │
│ │ │ │ │ │ │ │ mpilatio │
│ │ │ │ │ │ │ │ n.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ bash_log │ script │ generic. │ None │ None │ None │ customi │ /home/do │
│ in_sheba │ │ local.ba │ │ │ │ ze │ cs/check │
│ ng/611e8 │ │ sh │ │ │ │ shebang │ outs/rea │
│ 382 │ │ │ │ │ │ line │ dthedocs │
│ │ │ │ │ │ │ with │ .org/use │
│ │ │ │ │ │ │ bash │ r_builds │
│ │ │ │ │ │ │ login │ /buildte │
│ │ │ │ │ │ │ shell │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/sh │
│ │ │ │ │ │ │ │ ebang.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ bash_non │ script │ generic. │ None │ None │ None │ customi │ /home/do │
│ login_sh │ │ local.ba │ │ │ │ ze │ cs/check │
│ ebang/4b │ │ sh │ │ │ │ shebang │ outs/rea │
│ 553b04 │ │ │ │ │ │ line │ dthedocs │
│ │ │ │ │ │ │ with │ .org/use │
│ │ │ │ │ │ │ default │ r_builds │
│ │ │ │ │ │ │ bash │ /buildte │
│ │ │ │ │ │ │ (nonlog │ st/check │
│ │ │ │ │ │ │ in) │ outs/sta │
│ │ │ │ │ │ │ shell │ ble/tuto │
│ │ │ │ │ │ │ │ rials/sh │
│ │ │ │ │ │ │ │ ebang.ym │
│ │ │ │ │ │ │ │ l │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_lin │ script │ generic. │ None │ None │ None │ Perform │ /home/do │
│ ecount/a │ │ local.ba │ │ │ │ linecou │ cs/check │
│ 80424d8 │ │ sh │ │ │ │ nt │ outs/rea │
│ │ │ │ │ │ │ compari │ dthedocs │
│ │ │ │ │ │ │ son on │ .org/use │
│ │ │ │ │ │ │ files │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/file_l │
│ │ │ │ │ │ │ │ inecount │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ always_p │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ ass/1e56 │ │ local.sh │ │ │ │ test │ cs/check │
│ a0ff │ │ │ │ │ │ will │ outs/rea │
│ │ │ │ │ │ │ always │ dthedocs │
│ │ │ │ │ │ │ 'PASS' │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/explic │
│ │ │ │ │ │ │ │ it_state │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ always_f │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ ail/1c7d │ │ local.sh │ │ │ │ test │ cs/check │
│ 199c │ │ │ │ │ │ will │ outs/rea │
│ │ │ │ │ │ │ always │ dthedocs │
│ │ │ │ │ │ │ 'FAIL' │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/explic │
│ │ │ │ │ │ │ │ it_state │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ test_fai │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ l_return │ │ local.sh │ │ │ │ test │ cs/check │
│ code_mat │ │ │ │ │ │ will │ outs/rea │
│ ch/94223 │ │ │ │ │ │ 'FAIL' │ dthedocs │
│ f48 │ │ │ │ │ │ even if │ .org/use │
│ │ │ │ │ │ │ we have │ r_builds │
│ │ │ │ │ │ │ returnc │ /buildte │
│ │ │ │ │ │ │ ode │ st/check │
│ │ │ │ │ │ │ match │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/explic │
│ │ │ │ │ │ │ │ it_state │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ test_pas │ script │ generic. │ None │ None │ None │ This │ /home/do │
│ s_return │ │ local.sh │ │ │ │ test │ cs/check │
│ code_mis │ │ │ │ │ │ will │ outs/rea │
│ match/94 │ │ │ │ │ │ 'PASS' │ dthedocs │
│ 2a59ec │ │ │ │ │ │ even if │ .org/use │
│ │ │ │ │ │ │ we have │ r_builds │
│ │ │ │ │ │ │ returnc │ /buildte │
│ │ │ │ │ │ │ ode │ st/check │
│ │ │ │ │ │ │ mismatc │ outs/sta │
│ │ │ │ │ │ │ h │ ble/tuto │
│ │ │ │ │ │ │ │ rials/te │
│ │ │ │ │ │ │ │ st_statu │
│ │ │ │ │ │ │ │ s/explic │
│ │ │ │ │ │ │ │ it_state │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_r │ script │ generic. │ None │ None │ None │ Example │ /home/do │
│ ange_ex/ │ │ local.ba │ │ │ │ on │ cs/check │
│ cdcfed87 │ │ sh │ │ │ │ assert_ │ outs/rea │
│ │ │ │ │ │ │ range │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/pe │
│ │ │ │ │ │ │ │ rf_check │
│ │ │ │ │ │ │ │ s/assert │
│ │ │ │ │ │ │ │ _range.y │
│ │ │ │ │ │ │ │ ml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_r │ script │ generic. │ None │ None │ None │ define │ /home/do │
│ eturncod │ │ local.ba │ │ │ │ status │ cs/check │
│ e_by_exe │ │ sh │ │ │ │ per │ outs/rea │
│ cutors/b │ │ │ │ │ │ executo │ dthedocs │
│ b9b2c37 │ │ │ │ │ │ r type. │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/mu │
│ │ │ │ │ │ │ │ lti_exec │
│ │ │ │ │ │ │ │ utors/st │
│ │ │ │ │ │ │ │ atus_by_ │
│ │ │ │ │ │ │ │ executor │
│ │ │ │ │ │ │ │ s.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_r │ script │ generic. │ None │ None │ None │ define │ /home/do │
│ eturncod │ │ local.sh │ │ │ │ status │ cs/check │
│ e_by_exe │ │ │ │ │ │ per │ outs/rea │
│ cutors/1 │ │ │ │ │ │ executo │ dthedocs │
│ 6e14936 │ │ │ │ │ │ r type. │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/mu │
│ │ │ │ │ │ │ │ lti_exec │
│ │ │ │ │ │ │ │ utors/st │
│ │ │ │ │ │ │ │ atus_by_ │
│ │ │ │ │ │ │ │ executor │
│ │ │ │ │ │ │ │ s.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_tra │ script │ generic. │ None │ None │ None │ Use of │ /home/do │
│ verse_li │ │ local.ba │ │ │ │ file_tr │ cs/check │
│ mit/6fd5 │ │ sh │ │ │ │ averse_ │ outs/rea │
│ 8110 │ │ │ │ │ │ limit │ dthedocs │
│ │ │ │ │ │ │ to │ .org/use │
│ │ │ │ │ │ │ limit │ r_builds │
│ │ │ │ │ │ │ number │ /buildte │
│ │ │ │ │ │ │ of │ st/check │
│ │ │ │ │ │ │ files │ outs/sta │
│ │ │ │ │ │ │ searche │ ble/tuto │
│ │ │ │ │ │ │ d in a │ rials/te │
│ │ │ │ │ │ │ directo │ st_statu │
│ │ │ │ │ │ │ ry │ s/file_c │
│ │ │ │ │ │ │ │ ount_fil │
│ │ │ │ │ │ │ │ e_traver │
│ │ │ │ │ │ │ │ se_limit │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_g │ script │ generic. │ None │ None │ None │ Run │ /home/do │
│ t_exampl │ │ local.ba │ │ │ │ stream │ cs/check │
│ e/c9d519 │ │ sh │ │ │ │ test │ outs/rea │
│ 75 │ │ │ │ │ │ with │ dthedocs │
│ │ │ │ │ │ │ metrics │ .org/use │
│ │ │ │ │ │ │ example │ r_builds │
│ │ │ │ │ │ │ using │ /buildte │
│ │ │ │ │ │ │ assert │ st/check │
│ │ │ │ │ │ │ greater │ outs/sta │
│ │ │ │ │ │ │ than. │ ble/tuto │
│ │ │ │ │ │ │ │ rials/pe │
│ │ │ │ │ │ │ │ rf_check │
│ │ │ │ │ │ │ │ s/assert │
│ │ │ │ │ │ │ │ _gt.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ add_numb │ script │ generic. │ None │ None │ None │ Add X+Y │ /home/do │
│ ers/f170 │ │ local.ba │ │ │ │ │ cs/check │
│ 0799 │ │ sh │ │ │ │ │ outs/rea │
│ │ │ │ │ │ │ │ dthedocs │
│ │ │ │ │ │ │ │ .org/use │
│ │ │ │ │ │ │ │ r_builds │
│ │ │ │ │ │ │ │ /buildte │
│ │ │ │ │ │ │ │ st/check │
│ │ │ │ │ │ │ │ outs/sta │
│ │ │ │ │ │ │ │ ble/tuto │
│ │ │ │ │ │ │ │ rials/ad │
│ │ │ │ │ │ │ │ d_number │
│ │ │ │ │ │ │ │ s.yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴─────────┴──────────┘
──────────────────────────────── Building Test ─────────────────────────────────
summary_example/22921ee4: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/summary_example/summary_example/22921ee4
status_exists/d8ca53ab: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/exists/status_exists/d8ca53ab
status_exists_failure/c5ea0135: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/exists/status_exists_failure/c5ea0135
_bin_sh_shell/ea27beaa: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/shell_examples/_bin_sh_shell/ea27beaa
_bin_bash_shell/41844ca5: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/shell_examples/_bin_bash_shell/41844ca5
bash_shell/998a0b7b: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/shell_examples/bash_shell/998a0b7b
sh_shell/53b8b84d: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/shell_examples/sh_shell/53b8b84d
shell_options/5ca43699: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/shell_examples/shell_options/5ca43699
string_tag/ddbe16a6: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/tags_example/string_tag/ddbe16a6
list_of_strings_tags/82827e1c: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/tags_example/list_of_strings_tags/82827e1c
metric_regex_example/5688a94b: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/metrics_regex/metric_regex_example/5688a94b
metric_file_regex/87bdea67: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/metrics_regex/metric_file_regex/87bdea67
sleep/8f61affe: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/sleep/sleep/8f61affe
timelimit_min_max/ba15497b: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/runtime_status_test/timelimit_min_max/ba15497b
timelimit_min/9a5b2d2e: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/runtime_status_test/timelimit_min/9a5b2d2e
timelimit_max/c4d2c13a: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/runtime_status_test/timelimit_max/c4d2c13a
timelimit_min_fail/20af8778: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/runtime_status_test/timelimit_min_fail/20af8778
timelimit_max_fail/48b81f3a: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/runtime_status_test/timelimit_max_fail/48b81f3a
hello_world_singularity/67068ac5: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world_singularity/hello_world_singularity/67068ac5
'Unable to find singularity binary in PATH, this test will be not be executed.'
assert_lt_example/34e36829: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/assert_lt/assert_lt_example/34e36829
run_script_in_container/8bda96fe: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/run_script/run_script_in_container/8bda96fe
'Unable to find docker binary in PATH, this test will be not be executed.'
file_linecount_exceptions/04688693: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/file_linecount_failure/file_linecount_exceptions/04688693
stream_openmp_c/eb138b99: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/stream/stream_openmp_c/eb138b99
create_burst_buffer_executors/b696041a: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/burstbuffer_datawarp_executors/create_burst_buffer_executors/b696041a
create_burst_buffer_executors/0504124f: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/burstbuffer_datawarp_executors/create_burst_buffer_executors/0504124f
metric_file_regex_with_linenum_example/45eb4813: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/metrics_file_regex_with_linenum/metric_file_regex_with_linenum_example/45eb4813
foo_bar/a01b0b6f: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/maintainers_example/foo_bar/a01b0b6f
assert_eq_invalid_metric/6297f61d: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/6297f61d
assert_eq_mismatch/b9835021: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/b9835021
executors_sbatch_declaration/59f90018: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/executor_scheduler/executors_sbatch_declaration/59f90018
executors_sbatch_declaration/eb9660de: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/executor_scheduler/executors_sbatch_declaration/eb9660de
csh_shell/a6f61070: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.csh/csh_shell_examples/csh_shell/a6f61070
file_and_dir_checks/11943362: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/file_and_dir_check/file_and_dir_checks/11943362
combined_file_and_dir_checks/ce5dfebe: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/file_and_dir_check/combined_file_and_dir_checks/ce5dfebe
bash_env_variables/2b679a07: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/environment/bash_env_variables/2b679a07
csh_env_declaration/175260a0: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.csh/environment/csh_env_declaration/175260a0
tcsh_env_declaration/2277b336: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.csh/environment/tcsh_env_declaration/2277b336
test1/d842f8c7: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ex2/test1/d842f8c7
test2/c0ebc7b6: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ex2/test2/c0ebc7b6
test3/033d7430: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ex2/test3/033d7430
metric_file_regex_with_linenum_failure_example/5d058f9c: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/metrics_file_regex_with_invalid_linenum/metric_file_regex_with_linenum_failure_example/5d058f9c
file_count_on_directory/50b51b0d: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/file_count/file_count_on_directory/50b51b0d
file_count_by_extension/d8f8d161: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/file_count/file_count_by_extension/d8f8d161
post_run_example/7bae5f92: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/post_run/post_run_example/7bae5f92
post_run_example/7bae5f92: Writing Post Run Script: /tmp/tmpr88132k2/var/tests/generic.local.bash/post_run/post_run_example/7bae5f92/stage/post_run_example_postrun.sh
executors_vars_env_declaration/159f7ff1: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/executors_var_env_declaration/executors_vars_env_declaration/159f7ff1
executors_vars_env_declaration/3d23f714: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/executors_var_env_declaration/executors_vars_env_declaration/3d23f714
hello_world/cca247dc: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/cca247dc
metric_file_regex_invalid_file/ef702575: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/metrics_file_regex_invalid_file/metric_file_regex_invalid_file/ef702575
contains_and_not_contains/bba5aec7: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/contains/contains_and_not_contains/bba5aec7
assert_contains_fail/7c28465c: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/contains/assert_contains_fail/7c28465c
runtime_test/13f4de0e: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ex4/runtime_test/13f4de0e
runtime_test_pass/eb76e18a: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ex4/runtime_test_pass/eb76e18a
runtime_test_fail/94d1ed98: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ex4/runtime_test_fail/94d1ed98
status_regex_stdout_pass/5d6f03f7: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/status_regex/status_regex_stdout_pass/5d6f03f7
status_regex_stdout_fail/a64025ae: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/status_regex/status_regex_stdout_fail/a64025ae
status_regex_stderr_pass/a49753f5: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/status_regex/status_regex_stderr_pass/a49753f5
status_regex_stderr_fail/c1a6041d: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/status_regex/status_regex_stderr_fail/c1a6041d
jobA/4906e705: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ex1/jobA/4906e705
jobB/373443f1: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ex1/jobB/373443f1
jobC/341c0428: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ex1/jobC/341c0428
container_commands_ubuntu/47c9e2a4: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/run_commands/container_commands_ubuntu/47c9e2a4
'Unable to find docker binary in PATH, this test will be not be executed.'
container_options/90b32cc8: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/run_commands/container_options/90b32cc8
'Unable to find docker binary in PATH, this test will be not be executed.'
exit1_fail/4560861c: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/4560861c
exit1_pass/74556581: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/74556581
returncode_list_mismatch/280b499f: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/280b499f
returncode_int_match/22f8b424: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/22f8b424
file_count_by_filetype/5e1e867d: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/file_count_filetype/file_count_by_filetype/5e1e867d
status_logical_and/6827d7c8: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/mode/status_logical_and/6827d7c8
status_logical_or/f39a732e: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/mode/status_logical_or/f39a732e
circle_area/067a0897: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/067a0897
file_count_by_expression/17fa294d: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/file_count_pattern/file_count_by_expression/17fa294d
file_extension_and_filepattern/e6cd7db3: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/file_count_pattern/file_extension_and_filepattern/e6cd7db3
metric_regex_example_with_re/e22fd2d0: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/metrics_with_regex_type/metric_regex_example_with_re/e22fd2d0
unskipped/b6896f2b: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/skip_tests/unskipped/b6896f2b
assert_eq_example/26394ad7: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/assert_eq/assert_eq_example/26394ad7
assert_ne_example/963974ad: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/assert_ne/assert_ne_example/963974ad
metric_regex_with_linenum_example/c5249fac: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/metrics_regex_with_linenum/metric_regex_with_linenum_example/c5249fac
python_hello/802ec06b: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/python-hello/python_hello/802ec06b
regex_on_multiple_files/2d0bff11: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/regex_on_filename/regex_on_multiple_files/2d0bff11
regex_on_directory_not_supported/0b2f52b7: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/regex_on_filename/regex_on_directory_not_supported/0b2f52b7
file_expansion_supported/976efa78: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/regex_on_filename/file_expansion_supported/976efa78
linecount_stdout/ce05edf0: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/linecount/linecount_stdout/ce05edf0
linecount_stderr_mismatch/bf18c617: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/linecount/linecount_stderr_mismatch/bf18c617
pass_test/08ed46b1: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ex3/pass_test/08ed46b1
fail_test/6a761efb: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ex3/fail_test/6a761efb
pass_and_fail_test/5381259e: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ex3/pass_and_fail_test/5381259e
final_test/a2e12fe8: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/ex3/final_test/a2e12fe8
hello_world_docker/9f444dd2: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world_docker/9f444dd2
'Unable to find docker binary in PATH, this test will be not be executed.'
assert_le_example/c96cd49a: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/assert_le/assert_le_example/c96cd49a
re.search.stdout/41bec15d: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/specify_regex_type/re.search.stdout/41bec15d
re.match.stdout/29e68ebe: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/specify_regex_type/re.match.stdout/29e68ebe
re.fullmatch.stdout/b09a42ac: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/specify_regex_type/re.fullmatch.stdout/b09a42ac
re.match_on_file_regex/0ec7c3e4: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/specify_regex_type/re.match_on_file_regex/0ec7c3e4
file_exists_pass/91cc71e6: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/file_exists_with_number/file_exists_pass/91cc71e6
linux_strict_test/6e11be50: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/strict_example/linux_strict_test/6e11be50
stream_test/eaca7ba8: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/assert_ge/stream_test/eaca7ba8
gcc_version/ef88ea67: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/gcc_version/gcc_version/ef88ea67
symlink_test/dc283268: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/is_symlink/symlink_test/dc283268
metric_regex_linenum_failure_example/76d6c154: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/metrics_regex_with_invalid_linenum/metric_regex_linenum_failure_example/76d6c154
bind_mount_in_container/c5b00bad: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/bind_mounts/bind_mount_in_container/c5b00bad
'Unable to find docker binary in PATH, this test will be not be executed.'
variables_bash/68c3a124: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/68c3a124
multiple_executors/2ae4034b: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/executor_regex_script/multiple_executors/2ae4034b
multiple_executors/95ee7657: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/executor_regex_script/multiple_executors/95ee7657
hello_world_c_cpp/8f6c3d5d: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world_compilation/hello_world_c_cpp/8f6c3d5d
bash_login_shebang/611e8382: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/shebang/bash_login_shebang/611e8382
bash_nonlogin_shebang/4b553b04: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/shebang/bash_nonlogin_shebang/4b553b04
file_linecount/a80424d8: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/file_linecount/file_linecount/a80424d8
always_pass/1e56a0ff: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/explicit_state/always_pass/1e56a0ff
always_fail/1c7d199c: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/explicit_state/always_fail/1c7d199c
test_fail_returncode_match/94223f48: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/explicit_state/test_fail_returncode_match/94223f48
test_pass_returncode_mismatch/942a59ec: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/explicit_state/test_pass_returncode_mismatch/942a59ec
assert_range_ex/cdcfed87: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/assert_range/assert_range_ex/cdcfed87
status_returncode_by_executors/bb9b2c37: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/status_by_executors/status_returncode_by_executors/bb9b2c37
status_returncode_by_executors/16e14936: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.sh/status_by_executors/status_returncode_by_executors/16e14936
file_traverse_limit/6fd58110: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/file_count_file_traverse_limit/file_traverse_limit/6fd58110
assert_gt_example/c9d51975: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/assert_gt/assert_gt_example/c9d51975
add_numbers/f1700799: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/add_numbers/add_numbers/f1700799
Filter By Executor Type
In a HPC environment, you may want to run test locally on a login node or perhaps you only want to run batch jobs given a list of buildspecs specified on command line.
This can be done in buildtest via option buildtest build –executor-type which takes one of two values local or batch. If you want to filter all tests
by local executor you can do buildtest build --executor-type local
. buildtest will filter test based on the executor
property defined in the buildspec. Let’s assume
we want to run all test by python
tag on local executor you can do the following:
buildtest build -t python --executor-type local
$ buildtest build -t python --executor-type local
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:04 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-hello.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-shell.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 2 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Buildspecs By Tag=python
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-hello.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-shell.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 2 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 2
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 2
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 2
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-hello.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-shell.yml: VALID
Total builder objects created: 2
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ python_h │ script │ generic. │ None │ None │ None │ Hello │ /home/d │
│ ello/7fb │ │ local.ba │ │ │ │ World │ ocs/che │
│ d1111 │ │ sh │ │ │ │ python │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/pytho │
│ │ │ │ │ │ │ │ n-hello │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ circle_a │ script │ generic. │ None │ None │ None │ Calculat │ /home/d │
│ rea/6141 │ │ local.ba │ │ │ │ e circle │ ocs/che │
│ 8c9d │ │ sh │ │ │ │ of area │ ckouts/ │
│ │ │ │ │ │ │ given a │ readthe │
│ │ │ │ │ │ │ radius │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/pytho │
│ │ │ │ │ │ │ │ n-shell │
│ │ │ │ │ │ │ │ .yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
python_hello/7fbd1111: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/python-hello/python_hello/7fbd1111
circle_area/61418c9d: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/61418c9d
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
circle_area/61418c9d does not have any dependencies adding test to queue
python_hello/7fbd1111 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━┩
│ circle_area/61418c9d │
│ python_hello/7fbd1111 │
└───────────────────────┘
circle_area/61418c9d: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/61418c9d/stage
circle_area/61418c9d: Running Test via command: bash circle_area_build.sh
circle_area/61418c9d: Test completed in 0.056704 seconds with returncode: 0
circle_area/61418c9d: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/61418c9d/circle_area.out
circle_area/61418c9d: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/61418c9d/circle_area.err
python_hello/7fbd1111: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/python-hello/python_hello/7fbd1111/stage
python_hello/7fbd1111: Running Test via command: bash python_hello_build.sh
python_hello/7fbd1111: Test completed in 0.057492 seconds with returncode: 0
python_hello/7fbd1111: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-hello/python_hello/7fbd1111/python_hello.out
python_hello/7fbd1111: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-hello/python_hello/7fbd1111/python_hello.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ circle_area/61418c9d │ generic.local.bash │ PASS │ 0 │ 0.057 │
├───────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ python_hello/7fbd1111 │ generic.local.bash │ PASS │ 0 │ 0.057 │
└───────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 2/2 Percentage: 100.000%
Failed Tests: 0/2 Percentage: 0.000%
Adding 2 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_ydw0w8km.log
Now let’s say we want to rerun same command but now only run test that are batch, we can specify --executor-type batch
and buildtest will filter tests
by executor and find all batch executors. In this case we see that all tests were filtered out and we have no test run.
buildtest build -t python --executor-type batch
$ buildtest build -t python --executor-type batch
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:05 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-hello.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-shell.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 2 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Buildspecs By Tag=python
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-hello.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-shell.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 2 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 2
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 2
────────────────────────────── Parsing Buildspecs ──────────────────────────────
python_hello/0f973e65 is excluded since its not using batch executor
circle_area/6f3c753b is excluded since its not using batch executor
Valid Buildspecs: 2
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-hello.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-shell.yml: VALID
Buildspecs Filtered out
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ buildspecs ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │
└──────────────────────────────────────────────────────────────────────────────┘
buildtest is unable to create any tests because there are no valid buildspecs.
Please see logfile: /tmp/tmpr88132k2/var/buildtest.log
This option can be particularly useful if want to run a lot of tests and you are not sure which ones will run locally or batch. Let’s say you have all your buildspecs in a directory name tests and you want to run all test that will use local executor and you don’t want to run the batch jobs then you can do the following:
buildtest build -b tests --executor-type local
Configure Build Stages
We can control behavior of buildtest build
command to stop at certain phase
using --validate
and --dry-run
options.
Buildtest will validate all the buildspecs in the parse stage, so you can
instruct buildtest to stop at parse stage via --validate
. This can be useful
when debugging buildspecs that are invalid. In this example below, we instruct
buildtest to stop after parse stage.
buildtest build -b tutorials/vars.yml --validate
$ buildtest build -b tutorials/vars.yml --validate
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:06 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/vars.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/vars.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variable │ script │ generic. │ None │ None │ None │ Declare │ /home/d │
│ s_bash/7 │ │ local.ba │ │ │ │ shell │ ocs/che │
│ d4597ee │ │ sh │ │ │ │ variable │ ckouts/ │
│ │ │ │ │ │ │ s in │ readthe │
│ │ │ │ │ │ │ bash │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/vars. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
Invalid Buildspecs
buildtest will skip any buildspecs that fail to validate, in that case the test script will not be generated. Here is an example where we have an invalid buildspec.
buildtest build -b tutorials/invalid_buildspec_section.yml
$ buildtest build -b tutorials/invalid_buildspec_section.yml ╭───────────────────────────── buildtest summary ──────────────────────────────╮ │ │ │ User: docs │ │ Hostname: build-25534835-project-280831-buildtest │ │ Platform: Linux │ │ Current Time: 2024/09/05 15:35:07 │ │ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │ │ buildtest version: 2.1 │ │ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │ │ python version: 3.9.19 │ │ Configuration File: /tmp/tmpr88132k2/config.yml │ │ Test Directory: /tmp/tmpr88132k2/var/tests │ │ Report File: /tmp/tmpr88132k2/var/report.json │ │ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │ │ │ ╰──────────────────────────────────────────────────────────────────────────────╯ ─────────────────────────── Discovering Buildspecs ──────────────────────────── Discovered buildspecs ╔══════════════════════════════════════════════════════════════════════════════╗ ║ buildspec ║ ╟──────────────────────────────────────────────────────────────────────────────╢ ║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║ ║ tutorials/invalid_buildspec_section.yml ║ ╟──────────────────────────────────────────────────────────────────────────────╢ ║ Total: 1 ║ ╚══════════════════════════════════════════════════════════════════════════════╝ Total Discovered Buildspecs: 1 Total Excluded Buildspecs: 0 Detected Buildspecs after exclusion: 1 ────────────────────────────── Parsing Buildspecs ────────────────────────────── Valid Buildspecs: 0 Invalid Buildspecs: 1 /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/invalid_buildspec_section.yml: INVALID buildtest is unable to create any tests because there are no valid buildspecs. Please see logfile: /tmp/tmpr88132k2/var/buildtest.log
buildtest may skip tests from running if buildspec specifies an invalid executor name since buildtest needs to know this in order to delegate test to Executor class responsible for running the test. Here is an example where test failed to run since we provided invalid executor.
buildtest build -b tutorials/invalid_executor.yml
$ buildtest build -b tutorials/invalid_executor.yml ╭───────────────────────────── buildtest summary ──────────────────────────────╮ │ │ │ User: docs │ │ Hostname: build-25534835-project-280831-buildtest │ │ Platform: Linux │ │ Current Time: 2024/09/05 15:35:08 │ │ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │ │ buildtest version: 2.1 │ │ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │ │ python version: 3.9.19 │ │ Configuration File: /tmp/tmpr88132k2/config.yml │ │ Test Directory: /tmp/tmpr88132k2/var/tests │ │ Report File: /tmp/tmpr88132k2/var/report.json │ │ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │ │ │ ╰──────────────────────────────────────────────────────────────────────────────╯ ─────────────────────────── Discovering Buildspecs ──────────────────────────── Discovered buildspecs ╔══════════════════════════════════════════════════════════════════════════════╗ ║ buildspec ║ ╟──────────────────────────────────────────────────────────────────────────────╢ ║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║ ║ tutorials/invalid_executor.yml ║ ╟──────────────────────────────────────────────────────────────────────────────╢ ║ Total: 1 ║ ╚══════════════════════════════════════════════════════════════════════════════╝ Total Discovered Buildspecs: 1 Total Excluded Buildspecs: 0 Detected Buildspecs after exclusion: 1 ────────────────────────────── Parsing Buildspecs ────────────────────────────── Valid Buildspecs: 1 Invalid Buildspecs: 0 /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/invalid_executor.yml: VALID Buildspecs Filtered out ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ buildspecs ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ │ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable… │ └──────────────────────────────────────────────────────────────────────────────┘ buildtest is unable to create any tests because there are no valid buildspecs. Please see logfile: /tmp/tmpr88132k2/var/buildtest.log
Validate Tests (buildtest build --validate
)
When you use the buildtest build command, you have the option to enter a validate mode by
adding the --validate
option. In this mode, the command will validate given buildspecs
and stop after the parse stage. It’s particularly useful when you’re creating or editing a
buildspec file and want to check its validity before entering the build stage.
For instance, in the following example, we demonstrate how to instruct buildtest to halt after
the parse stage.
buildtest build -b tutorials/vars.yml --validate
$ buildtest build -b tutorials/vars.yml --validate
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:06 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/vars.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/vars.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variable │ script │ generic. │ None │ None │ None │ Declare │ /home/d │
│ s_bash/7 │ │ local.ba │ │ │ │ shell │ ocs/che │
│ d4597ee │ │ sh │ │ │ │ variable │ ckouts/ │
│ │ │ │ │ │ │ s in │ readthe │
│ │ │ │ │ │ │ bash │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/vars. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
Dry Run (buildtest build --dry-run
)
When you use the buildtest build command, you have the option to enter a dry run mode by
adding the --dry-run
option. In this mode, the command will simulate the build process
but won’t execute the tests. It’s particularly useful when you’re creating or editing a
buildspec file and want to see how the test script is generated without actually running the tests.
For instance, in the following example, we demonstrate how to instruct buildtest to halt after
the build stage.
buildtest build -b tutorials/vars.yml --dry-run
$ buildtest build -b tutorials/vars.yml --dry-run
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:09 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/vars.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/vars.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variable │ script │ generic. │ None │ None │ None │ Declare │ /home/d │
│ s_bash/5 │ │ local.ba │ │ │ │ shell │ ocs/che │
│ 46f1243 │ │ sh │ │ │ │ variable │ ckouts/ │
│ │ │ │ │ │ │ s in │ readthe │
│ │ │ │ │ │ │ bash │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/vars. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
variables_bash/546f1243: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/546f1243
Rebuild Tests (buildtest build --rebuild
)
buildtest can rebuild tests using the --rebuild
option which can be useful if
you want to test a particular test multiple times. The rebuild option works across
all discovered buildspecs and create a new test instance (unique id) and test directory
path. To demonstrate we will build tutorials/python-shell.yml
three times using
--rebuild=3
.
buildtest build -b tutorials/python-shell.yml --rebuild=3
$ buildtest build -b tutorials/python-shell.yml --rebuild=3
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:10 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-shell.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-shell.yml: VALID
Total builder objects created: 3
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ circle_a │ script │ generic. │ None │ None │ None │ Calculat │ /home/d │
│ rea/0e98 │ │ local.ba │ │ │ │ e circle │ ocs/che │
│ ce74 │ │ sh │ │ │ │ of area │ ckouts/ │
│ │ │ │ │ │ │ given a │ readthe │
│ │ │ │ │ │ │ radius │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/pytho │
│ │ │ │ │ │ │ │ n-shell │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ circle_a │ script │ generic. │ None │ None │ None │ Calculat │ /home/d │
│ rea/a8a1 │ │ local.ba │ │ │ │ e circle │ ocs/che │
│ ba5c │ │ sh │ │ │ │ of area │ ckouts/ │
│ │ │ │ │ │ │ given a │ readthe │
│ │ │ │ │ │ │ radius │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/pytho │
│ │ │ │ │ │ │ │ n-shell │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ circle_a │ script │ generic. │ None │ None │ None │ Calculat │ /home/d │
│ rea/8255 │ │ local.ba │ │ │ │ e circle │ ocs/che │
│ 8963 │ │ sh │ │ │ │ of area │ ckouts/ │
│ │ │ │ │ │ │ given a │ readthe │
│ │ │ │ │ │ │ radius │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/pytho │
│ │ │ │ │ │ │ │ n-shell │
│ │ │ │ │ │ │ │ .yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
circle_area/0e98ce74: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/0e98ce74
circle_area/a8a1ba5c: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/a8a1ba5c
circle_area/82558963: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/82558963
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
circle_area/a8a1ba5c does not have any dependencies adding test to queue
circle_area/0e98ce74 does not have any dependencies adding test to queue
circle_area/82558963 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ circle_area/82558963 │
│ circle_area/a8a1ba5c │
│ circle_area/0e98ce74 │
└──────────────────────┘
circle_area/82558963: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/82558963/stage
circle_area/82558963: Running Test via command: bash circle_area_build.sh
circle_area/82558963: Test completed in 0.056772 seconds with returncode: 0
circle_area/82558963: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/82558963/circle_area.out
circle_area/82558963: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/82558963/circle_area.err
circle_area/a8a1ba5c: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/a8a1ba5c/stage
circle_area/a8a1ba5c: Running Test via command: bash circle_area_build.sh
circle_area/a8a1ba5c: Test completed in 0.055591 seconds with returncode: 0
circle_area/a8a1ba5c: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/a8a1ba5c/circle_area.out
circle_area/a8a1ba5c: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/a8a1ba5c/circle_area.err
circle_area/0e98ce74: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/0e98ce74/stage
circle_area/0e98ce74: Running Test via command: bash circle_area_build.sh
circle_area/0e98ce74: Test completed in 0.055469 seconds with returncode: 0
circle_area/0e98ce74: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/0e98ce74/circle_area.out
circle_area/0e98ce74: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/0e98ce74/circle_area.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ circle_area/82558963 │ generic.local.bash │ PASS │ 0 │ 0.057 │
├──────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ circle_area/0e98ce74 │ generic.local.bash │ PASS │ 0 │ 0.055 │
├──────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ circle_area/a8a1ba5c │ generic.local.bash │ PASS │ 0 │ 0.056 │
└──────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 3/3 Percentage: 100.000%
Failed Tests: 0/3 Percentage: 0.000%
Adding 3 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_sang0rkq.log
The rebuild works with all options including: --buildspec
, --exclude
, --tags
and --executor
. buildtest will perform rebuild for all discovered tests, for instance in
this next example we will discover all tests by tag name fail and each test is rebuild twice.
buildtest build -t fail --rebuild 2
$ buildtest build -t fail --rebuild 2
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:11 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Buildspecs By Tag=fail
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml: VALID
Total builder objects created: 8
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ exit1_fa │ script │ generic. │ None │ None │ None │ exit 1 │ /home/d │
│ il/50b98 │ │ local.ba │ │ │ │ by │ ocs/che │
│ 74e │ │ sh │ │ │ │ default │ ckouts/ │
│ │ │ │ │ │ │ is FAIL │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_pa │ script │ generic. │ None │ None │ None │ report │ /home/d │
│ ss/8fb8c │ │ local.ba │ │ │ │ exit 1 │ ocs/che │
│ 597 │ │ sh │ │ │ │ as PASS │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnco │ script │ generic. │ None │ None │ None │ exit 2 │ /home/d │
│ de_list_ │ │ local.ba │ │ │ │ failed │ ocs/che │
│ mismatch │ │ sh │ │ │ │ since it │ ckouts/ │
│ /3829cb3 │ │ │ │ │ │ failed │ readthe │
│ 1 │ │ │ │ │ │ to match │ docs.or │
│ │ │ │ │ │ │ returnco │ g/user_ │
│ │ │ │ │ │ │ de 1 │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnco │ script │ generic. │ None │ None │ None │ exit 128 │ /home/d │
│ de_int_m │ │ local.ba │ │ │ │ matches │ ocs/che │
│ atch/dd8 │ │ sh │ │ │ │ returnco │ ckouts/ │
│ 627c8 │ │ │ │ │ │ de 128 │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_fa │ script │ generic. │ None │ None │ None │ exit 1 │ /home/d │
│ il/e472c │ │ local.ba │ │ │ │ by │ ocs/che │
│ 1f0 │ │ sh │ │ │ │ default │ ckouts/ │
│ │ │ │ │ │ │ is FAIL │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_pa │ script │ generic. │ None │ None │ None │ report │ /home/d │
│ ss/986d9 │ │ local.ba │ │ │ │ exit 1 │ ocs/che │
│ 6cd │ │ sh │ │ │ │ as PASS │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnco │ script │ generic. │ None │ None │ None │ exit 2 │ /home/d │
│ de_list_ │ │ local.ba │ │ │ │ failed │ ocs/che │
│ mismatch │ │ sh │ │ │ │ since it │ ckouts/ │
│ /89e9896 │ │ │ │ │ │ failed │ readthe │
│ c │ │ │ │ │ │ to match │ docs.or │
│ │ │ │ │ │ │ returnco │ g/user_ │
│ │ │ │ │ │ │ de 1 │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnco │ script │ generic. │ None │ None │ None │ exit 128 │ /home/d │
│ de_int_m │ │ local.ba │ │ │ │ matches │ ocs/che │
│ atch/8db │ │ sh │ │ │ │ returnco │ ckouts/ │
│ e117e │ │ │ │ │ │ de 128 │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
exit1_fail/50b9874e: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/50b9874e
exit1_pass/8fb8c597: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/8fb8c597
returncode_list_mismatch/3829cb31: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/3829cb31
returncode_int_match/dd8627c8: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/dd8627c8
exit1_fail/e472c1f0: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/e472c1f0
exit1_pass/986d96cd: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/986d96cd
returncode_list_mismatch/89e9896c: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/89e9896c
returncode_int_match/8dbe117e: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/8dbe117e
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
exit1_pass/8fb8c597 does not have any dependencies adding test to queue
exit1_pass/986d96cd does not have any dependencies adding test to queue
returncode_int_match/dd8627c8 does not have any dependencies adding test to queue
returncode_list_mismatch/3829cb31 does not have any dependencies adding test to queue
returncode_list_mismatch/89e9896c does not have any dependencies adding test to queue
exit1_fail/50b9874e does not have any dependencies adding test to queue
exit1_fail/e472c1f0 does not have any dependencies adding test to queue
returncode_int_match/8dbe117e does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ exit1_pass/8fb8c597 │
│ exit1_pass/986d96cd │
│ returncode_int_match/dd8627c8 │
│ returncode_list_mismatch/3829cb31 │
│ returncode_list_mismatch/89e9896c │
│ exit1_fail/50b9874e │
│ exit1_fail/e472c1f0 │
│ returncode_int_match/8dbe117e │
└───────────────────────────────────┘
exit1_pass/8fb8c597: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/8fb8c597/stage
exit1_pass/8fb8c597: Running Test via command: bash exit1_pass_build.sh
exit1_pass/8fb8c597: failed to submit job with returncode: 1
exit1_pass/8fb8c597: Detected failure in running test, will attempt to retry test: 1 times
exit1_pass/8fb8c597: Run - 1/1
exit1_pass/8fb8c597: Running Test via command: bash exit1_pass_build.sh
exit1_pass/8fb8c597: failed to submit job with returncode: 1
exit1_pass/8fb8c597: Test completed in 0.020853 seconds with returncode: 1
exit1_pass/8fb8c597: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/8fb8c597/exit1_pass.out
exit1_pass/8fb8c597: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/8fb8c597/exit1_pass.err
exit1_pass/8fb8c597: Checking returncode - 1 is matched in list [1]
exit1_pass/986d96cd: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/986d96cd/stage
exit1_pass/986d96cd: Running Test via command: bash exit1_pass_build.sh
exit1_pass/986d96cd: failed to submit job with returncode: 1
exit1_pass/986d96cd: Detected failure in running test, will attempt to retry test: 1 times
exit1_pass/986d96cd: Run - 1/1
exit1_pass/986d96cd: Running Test via command: bash exit1_pass_build.sh
exit1_pass/986d96cd: failed to submit job with returncode: 1
exit1_pass/986d96cd: Test completed in 0.02065 seconds with returncode: 1
exit1_pass/986d96cd: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/986d96cd/exit1_pass.out
exit1_pass/986d96cd: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/986d96cd/exit1_pass.err
exit1_pass/986d96cd: Checking returncode - 1 is matched in list [1]
returncode_int_match/dd8627c8: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/dd8627c8/stage
returncode_int_match/dd8627c8: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/dd8627c8: failed to submit job with returncode: 128
returncode_int_match/dd8627c8: Detected failure in running test, will attempt to retry test: 1 times
returncode_int_match/dd8627c8: Run - 1/1
returncode_int_match/dd8627c8: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/dd8627c8: failed to submit job with returncode: 128
returncode_int_match/dd8627c8: Test completed in 0.020518 seconds with returncode: 128
returncode_int_match/dd8627c8: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/dd8627c8/returncode_int_match.out
returncode_int_match/dd8627c8: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/dd8627c8/returncode_int_match.err
returncode_int_match/dd8627c8: Checking returncode - 128 is matched in list [128]
returncode_list_mismatch/3829cb31: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/3829cb31/stage
returncode_list_mismatch/3829cb31: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/3829cb31: failed to submit job with returncode: 2
returncode_list_mismatch/3829cb31: Detected failure in running test, will attempt to retry test: 1 times
returncode_list_mismatch/3829cb31: Run - 1/1
returncode_list_mismatch/3829cb31: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/3829cb31: failed to submit job with returncode: 2
returncode_list_mismatch/3829cb31: Test completed in 0.020475 seconds with returncode: 2
returncode_list_mismatch/3829cb31: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/3829cb31/returncode_list_mismatch.out
returncode_list_mismatch/3829cb31: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/3829cb31/returncode_list_mismatch.err
returncode_list_mismatch/3829cb31: Checking returncode - 2 is matched in list [1, 3]
returncode_list_mismatch/89e9896c: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/89e9896c/stage
returncode_list_mismatch/89e9896c: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/89e9896c: failed to submit job with returncode: 2
returncode_list_mismatch/89e9896c: Detected failure in running test, will attempt to retry test: 1 times
returncode_list_mismatch/89e9896c: Run - 1/1
returncode_list_mismatch/89e9896c: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/89e9896c: failed to submit job with returncode: 2
returncode_list_mismatch/89e9896c: Test completed in 0.02088 seconds with returncode: 2
returncode_list_mismatch/89e9896c: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/89e9896c/returncode_list_mismatch.out
returncode_list_mismatch/89e9896c: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/89e9896c/returncode_list_mismatch.err
returncode_list_mismatch/89e9896c: Checking returncode - 2 is matched in list [1, 3]
exit1_fail/50b9874e: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/50b9874e/stage
exit1_fail/50b9874e: Running Test via command: bash exit1_fail_build.sh
exit1_fail/50b9874e: failed to submit job with returncode: 1
exit1_fail/50b9874e: Detected failure in running test, will attempt to retry test: 1 times
exit1_fail/50b9874e: Run - 1/1
exit1_fail/50b9874e: Running Test via command: bash exit1_fail_build.sh
exit1_fail/50b9874e: failed to submit job with returncode: 1
exit1_fail/50b9874e: Test completed in 0.020609 seconds with returncode: 1
exit1_fail/50b9874e: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/50b9874e/exit1_fail.out
exit1_fail/50b9874e: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/50b9874e/exit1_fail.err
exit1_fail/e472c1f0: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/e472c1f0/stage
exit1_fail/e472c1f0: Running Test via command: bash exit1_fail_build.sh
exit1_fail/e472c1f0: failed to submit job with returncode: 1
exit1_fail/e472c1f0: Detected failure in running test, will attempt to retry test: 1 times
exit1_fail/e472c1f0: Run - 1/1
exit1_fail/e472c1f0: Running Test via command: bash exit1_fail_build.sh
exit1_fail/e472c1f0: failed to submit job with returncode: 1
exit1_fail/e472c1f0: Test completed in 0.020829 seconds with returncode: 1
exit1_fail/e472c1f0: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/e472c1f0/exit1_fail.out
exit1_fail/e472c1f0: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/e472c1f0/exit1_fail.err
returncode_int_match/8dbe117e: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/8dbe117e/stage
returncode_int_match/8dbe117e: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/8dbe117e: failed to submit job with returncode: 128
returncode_int_match/8dbe117e: Detected failure in running test, will attempt to retry test: 1 times
returncode_int_match/8dbe117e: Run - 1/1
returncode_int_match/8dbe117e: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/8dbe117e: failed to submit job with returncode: 128
returncode_int_match/8dbe117e: Test completed in 0.021398 seconds with returncode: 128
returncode_int_match/8dbe117e: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/8dbe117e/returncode_int_match.out
returncode_int_match/8dbe117e: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/8dbe117e/returncode_int_match.err
returncode_int_match/8dbe117e: Checking returncode - 128 is matched in list [128]
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ exit1_fail/50b9874e │ generic.local.bash │ FAIL │ 1 │ 0.021 │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_int_match/dd │ generic.local.bash │ PASS │ 128 │ 0.021 │
│ 8627c8 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_list_mismatc │ generic.local.bash │ FAIL │ 2 │ 0.020 │
│ h/3829cb31 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_pass/8fb8c597 │ generic.local.bash │ PASS │ 1 │ 0.021 │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_int_match/8d │ generic.local.bash │ PASS │ 128 │ 0.021 │
│ be117e │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_pass/986d96cd │ generic.local.bash │ PASS │ 1 │ 0.021 │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_list_mismatc │ generic.local.bash │ FAIL │ 2 │ 0.021 │
│ h/89e9896c │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_fail/e472c1f0 │ generic.local.bash │ FAIL │ 1 │ 0.021 │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 4/8 Percentage: 50.000%
Failed Tests: 4/8 Percentage: 50.000%
Adding 8 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_1wzmhz37.log
The rebuild option expects a range between 1-50, the --rebuild=1
is equivalent
to running without --rebuild
option. We set a max limit for rebuild option to
avoid system degredation due to high workload.
If you try to exceed this bound you will get an error such as
buildtest build -b tutorials/test_status/pass_returncode.yml --rebuild 51
$ buildtest build -b tutorials/test_status/pass_returncode.yml --rebuild 51
╭───────────────────── Traceback (most recent call last) ──────────────────────╮
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ │
│ bin/buildtest:38 in <module> │
│ │
│ 35 │
│ 36 if __name__ == "__main__": │
│ 37 │
│ ❱ 38 sys.exit(main()) │
│ 39 │
│ │
│ ╭───────────────────────────────── locals ─────────────────────────────────╮ │
│ │ buildtest_file = '/home/docs/checkouts/readthedocs.org/user_builds/buil… │ │
│ │ main = <function main at 0x7fb51c200280> │ │
│ │ os = <module 'os' from │ │
│ │ '/home/docs/.asdf/installs/python/3.9.19/lib/python3.9… │ │
│ │ prefix = '/home/docs/checkouts/readthedocs.org/user_builds/buil… │ │
│ │ sys = <module 'sys' (built-in)> │ │
│ ╰──────────────────────────────────────────────────────────────────────────╯ │
│ │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ │
│ buildtest/main.py:96 in main │
│ │
│ 93 │ │
│ 94 │ # buildtest build command │
│ 95 │ if args.subcommands in ["build", "bd"]: │
│ ❱ 96 │ │ handle_build_command(args, configuration, report_file) │
│ 97 │ │
│ 98 │ # buildtest build history │
│ 99 │ if args.subcommands in ["history", "hy"]: │
│ │
│ ╭───────────────────────────────── locals ─────────────────────────────────╮ │
│ │ args = Namespace(subcommands='build', configfile=None, │ │
│ │ debug=False, loglevel='DEBUG', editor=None, │ │
│ │ view_log=False, logpath=False, print_log=False, │ │
│ │ color=None, no_color=False, helpcolor=False, │ │
│ │ report=None, listopts=False, verbose=False, │ │
│ │ buildspec=['tutorials/test_status/pass_returncode.ym… │ │
│ │ exclude=None, name=None, executor=None, │ │
│ │ exclude_tags=None, tags=None, rerun=False, │ │
│ │ filter=None, helpfilter=False, executor_type=None, │ │
│ │ module_purge=False, modules=None, │ │
│ │ unload_modules=None, account=None, maxpendtime=None, │ │
│ │ pollinterval=None, procs=None, nodes=None, │ │
│ │ display=None, dry_run=False, limit=None, │ │
│ │ max_jobs=None, profile=None, remove_stagedir=False, │ │
│ │ rebuild=51, retry=1, save_profile=None, strict=False, │ │
│ │ testdir=None, timeout=None, validate=False, │ │
│ │ write_config_file=None) │ │
│ │ buildtest_editor = '/usr/bin/vim' │ │
│ │ configuration = <buildtest.config.SiteConfiguration object at │ │
│ │ 0x7fb51a2e5dc0> │ │
│ │ parser = <buildtest.cli.BuildTestParser object at │ │
│ │ 0x7fb51c37da90> │ │
│ │ report_file = None │ │
│ │ system = <buildtest.system.BuildTestSystem object at │ │
│ │ 0x7fb51a2e5b50> │ │
│ ╰──────────────────────────────────────────────────────────────────────────╯ │
│ │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ │
│ buildtest/main.py:303 in handle_build_command │
│ │
│ 300 │ if args.subcommands in ["build", "bd"]: │
│ 301 │ │ stdout_file = tempfile.NamedTemporaryFile(delete=True, suffix= │
│ 302 │ │ with Tee(stdout_file.name): │
│ ❱ 303 │ │ │ cmd = BuildTest( │
│ 304 │ │ │ │ account=args.account, │
│ 305 │ │ │ │ buildspecs=args.buildspec, │
│ 306 │ │ │ │ configuration=configuration, │
│ │
│ ╭───────────────────────────────── locals ─────────────────────────────────╮ │
│ │ args = Namespace(subcommands='build', configfile=None, │ │
│ │ debug=False, loglevel='DEBUG', editor=None, │ │
│ │ view_log=False, logpath=False, print_log=False, │ │
│ │ color=None, no_color=False, helpcolor=False, │ │
│ │ report=None, listopts=False, verbose=False, │ │
│ │ buildspec=['tutorials/test_status/pass_returncode.yml'], │ │
│ │ exclude=None, name=None, executor=None, │ │
│ │ exclude_tags=None, tags=None, rerun=False, filter=None, │ │
│ │ helpfilter=False, executor_type=None, │ │
│ │ module_purge=False, modules=None, unload_modules=None, │ │
│ │ account=None, maxpendtime=None, pollinterval=None, │ │
│ │ procs=None, nodes=None, display=None, dry_run=False, │ │
│ │ limit=None, max_jobs=None, profile=None, │ │
│ │ remove_stagedir=False, rebuild=51, retry=1, │ │
│ │ save_profile=None, strict=False, testdir=None, │ │
│ │ timeout=None, validate=False, write_config_file=None) │ │
│ │ configuration = <buildtest.config.SiteConfiguration object at │ │
│ │ 0x7fb51a2e5dc0> │ │
│ │ report_file = None │ │
│ │ stdout_file = <tempfile._TemporaryFileWrapper object at │ │
│ │ 0x7fb51a2daee0> │ │
│ ╰──────────────────────────────────────────────────────────────────────────╯ │
│ │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ │
│ buildtest/cli/build.py:712 in __init__ │
│ │
│ 709 │ │ │ │ raise BuildTestError(f"{rebuild} is not of type int") │
│ 710 │ │ │ │
│ 711 │ │ │ if rebuild > 50: │
│ ❱ 712 │ │ │ │ raise BuildTestError( │
│ 713 │ │ │ │ │ f"--rebuild {rebuild} exceeds maximum rebuild lim │
│ 714 │ │ │ │ ) │
│ 715 │
│ │
│ ╭───────────────────────────────── locals ─────────────────────────────────╮ │
│ │ account = None │ │
│ │ arg_name = None │ │
│ │ buildspecs = ['tutorials/test_status/pass_returncode.yml'] │ │
│ │ configuration = <buildtest.config.SiteConfiguration object at │ │
│ │ 0x7fb51a2e5dc0> │ │
│ │ display = None │ │
│ │ dry_run = False │ │
│ │ exclude_buildspecs = None │ │
│ │ exclude_tags = None │ │
│ │ executor_type = None │ │
│ │ executors = None │ │
│ │ filter_buildspecs = None │ │
│ │ helpfilter = False │ │
│ │ limit = None │ │
│ │ max_jobs = None │ │
│ │ maxpendtime = None │ │
│ │ modulepurge = False │ │
│ │ modules = None │ │
│ │ name = None │ │
│ │ numnodes = None │ │
│ │ numprocs = None │ │
│ │ poll_interval = None │ │
│ │ profile = None │ │
│ │ rebuild = 51 │ │
│ │ remove_stagedir = False │ │
│ │ report_file = None │ │
│ │ rerun = False │ │
│ │ retry = 1 │ │
│ │ save_profile = None │ │
│ │ self = <buildtest.cli.build.BuildTest object at │ │
│ │ 0x7fb51a2dad00> │ │
│ │ strict = False │ │
│ │ tags = None │ │
│ │ testdir = None │ │
│ │ timeout = None │ │
│ │ unload_modules = None │ │
│ │ validate = False │ │
│ │ verbose = False │ │
│ │ write_config_file = None │ │
│ ╰──────────────────────────────────────────────────────────────────────────╯ │
╰──────────────────────────────────────────────────────────────────────────────╯
BuildTestError: '--rebuild 51 exceeds maximum rebuild limit of 50'
Limit Number of Tests (buildtest build --limit
)
The buildtest build command can limit the number of tests that can run via --limit
option. This
can be useful when running large number of tests and you have no idea
how many tests will run. The --limit <NUM>
option expects a positive number which will
limit number of tests to the total limit. If there are less tests to run than the
value specified by --limit
, then buildtest will run all the test. When buildtest has more
tests to run than the value specified by --limit
, then buildtest will exclude some tests.
To demonstrate this feature, we will run the same command with and without –limit option.
In first example, we will run a test that will run 4 tests.
buildtest build -b tutorials/test_status/pass_returncode.yml
$ buildtest build -b tutorials/test_status/pass_returncode.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:14 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml: VALID
Total builder objects created: 4
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ exit1_fa │ script │ generic. │ None │ None │ None │ exit 1 │ /home/d │
│ il/e6af7 │ │ local.ba │ │ │ │ by │ ocs/che │
│ 448 │ │ sh │ │ │ │ default │ ckouts/ │
│ │ │ │ │ │ │ is FAIL │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_pa │ script │ generic. │ None │ None │ None │ report │ /home/d │
│ ss/be59c │ │ local.ba │ │ │ │ exit 1 │ ocs/che │
│ 833 │ │ sh │ │ │ │ as PASS │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnco │ script │ generic. │ None │ None │ None │ exit 2 │ /home/d │
│ de_list_ │ │ local.ba │ │ │ │ failed │ ocs/che │
│ mismatch │ │ sh │ │ │ │ since it │ ckouts/ │
│ /6887dc3 │ │ │ │ │ │ failed │ readthe │
│ 3 │ │ │ │ │ │ to match │ docs.or │
│ │ │ │ │ │ │ returnco │ g/user_ │
│ │ │ │ │ │ │ de 1 │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnco │ script │ generic. │ None │ None │ None │ exit 128 │ /home/d │
│ de_int_m │ │ local.ba │ │ │ │ matches │ ocs/che │
│ atch/afe │ │ sh │ │ │ │ returnco │ ckouts/ │
│ 036f7 │ │ │ │ │ │ de 128 │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
exit1_fail/e6af7448: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/e6af7448
exit1_pass/be59c833: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/be59c833
returncode_list_mismatch/6887dc33: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/6887dc33
returncode_int_match/afe036f7: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/afe036f7
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
exit1_fail/e6af7448 does not have any dependencies adding test to queue
returncode_int_match/afe036f7 does not have any dependencies adding test to queue
exit1_pass/be59c833 does not have any dependencies adding test to queue
returncode_list_mismatch/6887dc33 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ exit1_fail/e6af7448 │
│ returncode_int_match/afe036f7 │
│ exit1_pass/be59c833 │
│ returncode_list_mismatch/6887dc33 │
└───────────────────────────────────┘
exit1_fail/e6af7448: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/e6af7448/stage
exit1_fail/e6af7448: Running Test via command: bash exit1_fail_build.sh
exit1_fail/e6af7448: failed to submit job with returncode: 1
exit1_fail/e6af7448: Detected failure in running test, will attempt to retry test: 1 times
exit1_fail/e6af7448: Run - 1/1
exit1_fail/e6af7448: Running Test via command: bash exit1_fail_build.sh
exit1_fail/e6af7448: failed to submit job with returncode: 1
exit1_fail/e6af7448: Test completed in 0.020887 seconds with returncode: 1
exit1_fail/e6af7448: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/e6af7448/exit1_fail.out
exit1_fail/e6af7448: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/e6af7448/exit1_fail.err
returncode_int_match/afe036f7: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/afe036f7/stage
returncode_int_match/afe036f7: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/afe036f7: failed to submit job with returncode: 128
returncode_int_match/afe036f7: Detected failure in running test, will attempt to retry test: 1 times
returncode_int_match/afe036f7: Run - 1/1
returncode_int_match/afe036f7: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/afe036f7: failed to submit job with returncode: 128
returncode_int_match/afe036f7: Test completed in 0.020607 seconds with returncode: 128
returncode_int_match/afe036f7: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/afe036f7/returncode_int_match.out
returncode_int_match/afe036f7: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_int_match/afe036f7/returncode_int_match.err
returncode_int_match/afe036f7: Checking returncode - 128 is matched in list [128]
exit1_pass/be59c833: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/be59c833/stage
exit1_pass/be59c833: Running Test via command: bash exit1_pass_build.sh
exit1_pass/be59c833: failed to submit job with returncode: 1
exit1_pass/be59c833: Detected failure in running test, will attempt to retry test: 1 times
exit1_pass/be59c833: Run - 1/1
exit1_pass/be59c833: Running Test via command: bash exit1_pass_build.sh
exit1_pass/be59c833: failed to submit job with returncode: 1
exit1_pass/be59c833: Test completed in 0.02042 seconds with returncode: 1
exit1_pass/be59c833: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/be59c833/exit1_pass.out
exit1_pass/be59c833: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/be59c833/exit1_pass.err
exit1_pass/be59c833: Checking returncode - 1 is matched in list [1]
returncode_list_mismatch/6887dc33: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/6887dc33/stage
returncode_list_mismatch/6887dc33: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/6887dc33: failed to submit job with returncode: 2
returncode_list_mismatch/6887dc33: Detected failure in running test, will attempt to retry test: 1 times
returncode_list_mismatch/6887dc33: Run - 1/1
returncode_list_mismatch/6887dc33: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/6887dc33: failed to submit job with returncode: 2
returncode_list_mismatch/6887dc33: Test completed in 0.021059 seconds with returncode: 2
returncode_list_mismatch/6887dc33: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/6887dc33/returncode_list_mismatch.out
returncode_list_mismatch/6887dc33: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/6887dc33/returncode_list_mismatch.err
returncode_list_mismatch/6887dc33: Checking returncode - 2 is matched in list [1, 3]
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ returncode_list_mismatc │ generic.local.bash │ FAIL │ 2 │ 0.021 │
│ h/6887dc33 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_int_match/af │ generic.local.bash │ PASS │ 128 │ 0.021 │
│ e036f7 │ │ │ │ │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_pass/be59c833 │ generic.local.bash │ PASS │ 1 │ 0.020 │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_fail/e6af7448 │ generic.local.bash │ FAIL │ 1 │ 0.021 │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 2/4 Percentage: 50.000%
Failed Tests: 2/4 Percentage: 50.000%
Adding 4 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_sn102uqv.log
Now let’s run this same test with --limit=2
and notice buildtest will run 2/4 tests
buildtest build -b tutorials/test_status/pass_returncode.yml --limit=2
$ buildtest build -b tutorials/test_status/pass_returncode.yml --limit=2
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:15 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml: VALID
Total builder objects created: 4
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ exit1_fa │ script │ generic. │ None │ None │ None │ exit 1 │ /home/d │
│ il/dff1a │ │ local.ba │ │ │ │ by │ ocs/che │
│ 613 │ │ sh │ │ │ │ default │ ckouts/ │
│ │ │ │ │ │ │ is FAIL │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_pa │ script │ generic. │ None │ None │ None │ report │ /home/d │
│ ss/c035a │ │ local.ba │ │ │ │ exit 1 │ ocs/che │
│ fa0 │ │ sh │ │ │ │ as PASS │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnco │ script │ generic. │ None │ None │ None │ exit 2 │ /home/d │
│ de_list_ │ │ local.ba │ │ │ │ failed │ ocs/che │
│ mismatch │ │ sh │ │ │ │ since it │ ckouts/ │
│ /ff5cb42 │ │ │ │ │ │ failed │ readthe │
│ 4 │ │ │ │ │ │ to match │ docs.or │
│ │ │ │ │ │ │ returnco │ g/user_ │
│ │ │ │ │ │ │ de 1 │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnco │ script │ generic. │ None │ None │ None │ exit 128 │ /home/d │
│ de_int_m │ │ local.ba │ │ │ │ matches │ ocs/che │
│ atch/e03 │ │ sh │ │ │ │ returnco │ ckouts/ │
│ 43ccc │ │ │ │ │ │ de 128 │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/test_ │
│ │ │ │ │ │ │ │ status/ │
│ │ │ │ │ │ │ │ pass_re │
│ │ │ │ │ │ │ │ turncod │
│ │ │ │ │ │ │ │ e.yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
Limit number of tests to 2 for Building and Running.
──────────────────────────────── Building Test ─────────────────────────────────
exit1_fail/dff1a613: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/dff1a613
exit1_pass/c035afa0: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/c035afa0
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
exit1_fail/dff1a613 does not have any dependencies adding test to queue
exit1_pass/c035afa0 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━┩
│ exit1_fail/dff1a613 │
│ exit1_pass/c035afa0 │
└─────────────────────┘
exit1_fail/dff1a613: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/dff1a613/stage
exit1_fail/dff1a613: Running Test via command: bash exit1_fail_build.sh
exit1_fail/dff1a613: failed to submit job with returncode: 1
exit1_fail/dff1a613: Detected failure in running test, will attempt to retry test: 1 times
exit1_fail/dff1a613: Run - 1/1
exit1_fail/dff1a613: Running Test via command: bash exit1_fail_build.sh
exit1_fail/dff1a613: failed to submit job with returncode: 1
exit1_fail/dff1a613: Test completed in 0.020911 seconds with returncode: 1
exit1_fail/dff1a613: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/dff1a613/exit1_fail.out
exit1_fail/dff1a613: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_fail/dff1a613/exit1_fail.err
exit1_pass/c035afa0: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/c035afa0/stage
exit1_pass/c035afa0: Running Test via command: bash exit1_pass_build.sh
exit1_pass/c035afa0: failed to submit job with returncode: 1
exit1_pass/c035afa0: Detected failure in running test, will attempt to retry test: 1 times
exit1_pass/c035afa0: Run - 1/1
exit1_pass/c035afa0: Running Test via command: bash exit1_pass_build.sh
exit1_pass/c035afa0: failed to submit job with returncode: 1
exit1_pass/c035afa0: Test completed in 0.020429 seconds with returncode: 1
exit1_pass/c035afa0: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/c035afa0/exit1_pass.out
exit1_pass/c035afa0: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/pass_returncode/exit1_pass/c035afa0/exit1_pass.err
exit1_pass/c035afa0: Checking returncode - 1 is matched in list [1]
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ exit1_pass/c035afa0 │ generic.local.bash │ PASS │ 1 │ 0.020 │
├─────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_fail/dff1a613 │ generic.local.bash │ FAIL │ 1 │ 0.021 │
└─────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 1/2 Percentage: 50.000%
Failed Tests: 1/2 Percentage: 50.000%
Adding 2 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_if5dsuwg.log
If you specify 0 or negative number you will get an error as follows
buildtest build -b tutorials/test_status/pass_returncode.yml --limit=0
$ buildtest build -b tutorials/test_status/pass_returncode.yml --limit=0
usage: buildtest [options] [COMMANDS] build [-h] [-b BUILDSPEC] [-x EXCLUDE]
[-n NAME] [-e EXECUTOR]
[-xt EXCLUDE_TAGS] [-t TAGS]
[--rerun] [-f FILTER]
[--helpfilter] [-et {local,batch}]
[--module-purge] [-m MODULES]
[-u UNLOAD_MODULES]
[--account ACCOUNT]
[--maxpendtime MAXPENDTIME]
[--pollinterval POLLINTERVAL]
[--procs PROCS [PROCS ...]]
[--nodes NODES [NODES ...]]
[--display {output,test}]
[--dry-run] [--limit LIMIT]
[--max-jobs MAX_JOBS]
[--profile PROFILE]
[--remove-stagedir]
[--rebuild REBUILD]
[--retry RETRY]
[--save-profile SAVE_PROFILE]
[--strict] [--testdir TESTDIR]
[--timeout TIMEOUT] [--validate]
[--write-config-file WRITE_CONFIG_FILE]
buildtest [options] [COMMANDS] build: error: argument --limit: Input: 0 converted to int: 0 must be a positive number
Rerun Last Command (buildtest build --rerun
)
The buildtest build --rerun
command can be used to rerun last successful buildtest build
command, this can be useful if you want to repeat a certain
build without having to remember the command or going through your command history to find the command you ran. When using this option all other options passed
to buildtest will be ignored. In order to use –rerun option you must run buildtest build
command such that buildtest can rerun your last successful
command.
Let’s start by building a simple test.
buildtest build -b tutorials/vars.yml
$ buildtest build -b tutorials/vars.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:17 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/vars.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/vars.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variable │ script │ generic. │ None │ None │ None │ Declare │ /home/d │
│ s_bash/9 │ │ local.ba │ │ │ │ shell │ ocs/che │
│ 048490a │ │ sh │ │ │ │ variable │ ckouts/ │
│ │ │ │ │ │ │ s in │ readthe │
│ │ │ │ │ │ │ bash │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/vars. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
variables_bash/9048490a: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/9048490a
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/9048490a does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ variables_bash/9048490a │
└─────────────────────────┘
variables_bash/9048490a: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/9048490a/stage
variables_bash/9048490a: Running Test via command: bash variables_bash_build.sh
variables_bash/9048490a: Test completed in 0.014824 seconds with returncode: 0
variables_bash/9048490a: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/9048490a/variables_bash.out
variables_bash/9048490a: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/9048490a/variables_bash.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ variables_bash/9048490a │ generic.local.bash │ PASS │ 0 │ 0.015 │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%
Adding 1 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_i_f8o1oy.log
Next let’s rerun the same command via buildtest build --rerun
and take note that it will rerun same command as before
buildtest build --rerun
$ buildtest build --rerun
Reading content of rerun file /tmp/tmpr88132k2/var/rerun.json all other options will be ignored.
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:18 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/vars.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/vars.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variable │ script │ generic. │ None │ None │ None │ Declare │ /home/d │
│ s_bash/8 │ │ local.ba │ │ │ │ shell │ ocs/che │
│ 9eac98f │ │ sh │ │ │ │ variable │ ckouts/ │
│ │ │ │ │ │ │ s in │ readthe │
│ │ │ │ │ │ │ bash │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/vars. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
variables_bash/89eac98f: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/89eac98f
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/89eac98f does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ variables_bash/89eac98f │
└─────────────────────────┘
variables_bash/89eac98f: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/89eac98f/stage
variables_bash/89eac98f: Running Test via command: bash variables_bash_build.sh
variables_bash/89eac98f: Test completed in 0.01483 seconds with returncode: 0
variables_bash/89eac98f: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/89eac98f/variables_bash.out
variables_bash/89eac98f: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/89eac98f/variables_bash.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ variables_bash/89eac98f │ generic.local.bash │ PASS │ 0 │ 0.015 │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%
Adding 1 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_eso_1xrv.log
If you pass additional options with --rerun
it will simply be ignored. In this case -t python --dry-run
will not be read by buildtest instead we will
rerun same command.
buildtest build --rerun -t python --dry-run
$ buildtest build --rerun -t python --dry-run
Reading content of rerun file /tmp/tmpr88132k2/var/rerun.json all other options will be ignored.
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:19 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/vars.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/vars.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variable │ script │ generic. │ None │ None │ None │ Declare │ /home/d │
│ s_bash/1 │ │ local.ba │ │ │ │ shell │ ocs/che │
│ cfe762d │ │ sh │ │ │ │ variable │ ckouts/ │
│ │ │ │ │ │ │ s in │ readthe │
│ │ │ │ │ │ │ bash │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/vars. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
variables_bash/1cfe762d: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/1cfe762d
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/1cfe762d does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ variables_bash/1cfe762d │
└─────────────────────────┘
variables_bash/1cfe762d: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/1cfe762d/stage
variables_bash/1cfe762d: Running Test via command: bash variables_bash_build.sh
variables_bash/1cfe762d: Test completed in 0.019083 seconds with returncode: 0
variables_bash/1cfe762d: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/1cfe762d/variables_bash.out
variables_bash/1cfe762d: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/1cfe762d/variables_bash.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ variables_bash/1cfe762d │ generic.local.bash │ PASS │ 0 │ 0.019 │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%
Adding 1 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_cwp8_yzu.log
Note
The buildtest clean
will erase all history of builds and if you run buildtest build --rerun
will raise an exception
Specify Modules in command line
If your system supports modules
such as environment-modules or Lmod you can specify a list
of modules to load (module load
) in the test via buildtest build --modules
. You can specify
a comma separated list of modules to load, for example if you want to load gcc and python module in
your test you can run buildtest build --modules gcc,python
. You may specify full name of module with
version for instance you want test to load gcc/9.3.0 and python/3.7 you can run buildtest build --modules gcc/9.3.0,python/3.7
.
If you want test to run module purge
before running test you can specify buildtest build --module-purge
option. If you specify
--module-purge
and --modules
then module purge
will be run prior to loading any modules.
Similarly, you can unload modules before running any test via buildtest build --unload-modules
which is a list of modules to run
module unload
command and works similar to --modules
option. Buildtest will unload modules before loading modules if both –modules and
–unload-modules are specified. If –module-purge is also specified then we run module purge first before loading/unloading any modules.
Use Alternate Configuration file
If you want to use an alternate configuration file when building test you can use buildtest -c <config> build
.
buildtest will prefer configuration file on command line over the user configuration ($HOME/.buildtest/config.yml
). For more
details see Which configuration file does buildtest read?.
Removing Stage Directory
buildtest will write the tests in stage directory where test will be executed, typically buildtest will keep the
stage directory but if you want to remove the directory you can use buildtest build --remove-stagedir
.
Specify Project Account for batch jobs (buildtest build --account
)
For batch jobs you typically require one to specify a project account in order to charge jobs depending on your
scheduler you can use buildtest build --account
option and specify an account name. The command line
argument --account
will override configuration setting. For more details see Specifying Project Account
Test Timeout (buildtest build --timeout
)
Buildtest can terminate test based on timeout value specified via --timeout
option which can be used to terminate
long running test. The timeout is in seconds and value must be a positive integer which is applied to all
test that are run via buildtest build
command. If test exceeds the timeout value, then process will be terminated.
To demonstrate this behavior, we will run the following test with a timeout of 1 sec which is expected to fail. Take note of the test returncode of test.
buildtest build -b tutorials/sleep.yml --timeout 1
$ buildtest build -b tutorials/sleep.yml --timeout 1
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:20 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/sleep.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/sleep.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ sleep/ea │ script │ generic. │ None │ None │ None │ sleep 2 │ /home/d │
│ dd93f6 │ │ local.ba │ │ │ │ seconds │ ocs/che │
│ │ │ sh │ │ │ │ │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/sleep │
│ │ │ │ │ │ │ │ .yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
sleep/eadd93f6: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/sleep/sleep/eadd93f6
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
sleep/eadd93f6 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━┩
│ sleep/eadd93f6 │
└────────────────┘
sleep/eadd93f6: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/sleep/sleep/eadd93f6/stage
sleep/eadd93f6: Running Test via command: bash sleep_build.sh
sleep/eadd93f6: failed to submit job with returncode: -9
sleep/eadd93f6: Detected failure in running test, will attempt to retry test: 1 times
sleep/eadd93f6: Run - 1/1
sleep/eadd93f6: Running Test via command: bash sleep_build.sh
sleep/eadd93f6: failed to submit job with returncode: -9
sleep/eadd93f6: Test completed in 2.017344 seconds with returncode: -9
sleep/eadd93f6: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/sleep/sleep/eadd93f6/sleep.out
sleep/eadd93f6: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/sleep/sleep/eadd93f6/sleep.err
Test Summary
┏━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ sleep/eadd93f6 │ generic.local.bash │ FAIL │ -9 │ 2.017 │
└────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 0/1 Percentage: 0.000%
Failed Tests: 1/1 Percentage: 100.000%
Adding 1 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_2cflct8x.log
Now if we run this test with a higher timeout value we will see this test will pass, if no timeout is specified then test will run until completion.
buildtest build -b tutorials/sleep.yml --timeout 10
$ buildtest build -b tutorials/sleep.yml --timeout 10
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:23 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/sleep.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/sleep.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ sleep/f1 │ script │ generic. │ None │ None │ None │ sleep 2 │ /home/d │
│ f647da │ │ local.ba │ │ │ │ seconds │ ocs/che │
│ │ │ sh │ │ │ │ │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/sleep │
│ │ │ │ │ │ │ │ .yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
sleep/f1f647da: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/sleep/sleep/f1f647da
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
sleep/f1f647da does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━┩
│ sleep/f1f647da │
└────────────────┘
sleep/f1f647da: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/sleep/sleep/f1f647da/stage
sleep/f1f647da: Running Test via command: bash sleep_build.sh
sleep/f1f647da: Test completed in 2.022109 seconds with returncode: 0
sleep/f1f647da: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/sleep/sleep/f1f647da/sleep.out
sleep/f1f647da: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/sleep/sleep/f1f647da/sleep.err
Test Summary
┏━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ sleep/f1f647da │ generic.local.bash │ PASS │ 0 │ 2.022 │
└────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%
Adding 1 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_y0n4mxnp.log
Using Profiles (buildtest build --profile
)
Buildtest has a concept of profiles, which allows one to run a set of buildtest build
options without having to remember
all the options. This can be useful if you are running a set of tests repeatedly. In-order to use profiles you must first,
create a profile by using --save-profile
.
For example, let’s create a profile called python-tests for all tests with tag python
buildtest build -t python --save-profile=python-tests
$ buildtest build -t python --save-profile=python-tests
Saved profile python-tests to configuration file /tmp/tmpr88132k2/config.yml
Next, let’s see our configuration file, you will notice a new section called profiles
with a profile called python-tests
buildtest configuration with profile
$ buildtest config view
───────────────────────── /tmp/tmpr88132k2/config.yml ──────────────────────────
1 system:
2 generic:
3 # specify a list of hostnames that is a regular expression where buildtest can run.
4 hostnames: ['.*']
5 # system description
6 description: Generic System
7 # specify module system to use. Supported module systems are [lmod, environment-modules, none]
8 moduletool: none
9
10 # specify size of job pool (https://docs.python.org/3/library/multiprocessing.html#multiprocessing.pool.Pool). This will configure the number of processes that can run in parallel.
11 # If not specified then buildtest will use all available cores on the system.
12 poolsize: 1
13
14 # maximum number of jobs that can run in parallel. If not specified, buildtest will run all jobs in parallel.
15 #max_jobs: 1
16
17 # test timeout in number of seconds
18 # timeout: 3600
19
20 # enable pagination for buildtest
21 pager: false
22
23 # options for buildtest buildspec find command
24 buildspecs:
25 # determine whether to rebuild buildspec cache
26 rebuild: false
27 # determine number of records to display
28 count: 15
29
30 # specify format fields
31 #format: name,description
32
33 # display output in terse mode
34 terse: false
35
36 # list of paths to search for buildspecs
37 #directory: ["$BUILDTEST_ROOT/tutorials", "$BUILDTEST_ROOT/examples"]
38
39 # options for buildtest report command
40 report:
41 # number of records to display
42 count: 25
43 # display output in terse mode
44 terse: false
45 # specify format fields
46 format: name,id,state,runtime,returncode
47
48 # specify directory paths to search for binaries
49 #paths:
50 # directory path to search for slurm binaries.
51 #slurm: "/usr/bin"
52
53 # directory path to search for lsf binaries.
54 #lsf: "/usr/bin"
55
56 # directory path to search for pbs binaries.
57 #pbs: "/usr/bin"
58
59 # directory path to search for torque binaries.
60 #torque: "/usr/bin"
61
62 # path to docker directory
63 #docker: "/usr/local/bin"
64
65 # path to singularity directory
66 #singularity: "/usr/local/bin"
67
68 # path to podman directory
69 #podman: "/usr/local/bin"
70
71 # start of executor configuration
72 executors:
73 # local executor is used to submit jobs on local machine. In this example we have 4 executors: bash, sh, csh, zsh that will submit jobs using bash, sh, csh, zsh shell respectively.
74 local:
75 bash:
76 description: submit jobs on local machine using bash shell
77 shell: bash
78 sh:
79 description: submit jobs on local machine using sh shell
80 shell: sh
81 csh:
82 description: submit jobs on local machine using csh shell
83 shell: csh
84 zsh:
85 description: submit jobs on local machine using zsh shell
86 shell: zsh
87 # specify compiler declaration
88 compilers:
89 compiler:
90 # declaration of all gcc compilers
91 gcc:
92 # name of compiler
93 builtin_gcc:
94 cc: gcc
95 fc: gfortran
96 cxx: g++
97 # specify CDASH configuration when using 'buildtest cdash upload'
98 cdash:
99 # CDASH server
100 url: https://my.cdash.org/
101 # name of CDASH project where to push test reports
102 project: buildtest
103 # specify the site name which should generally by name of your HPC system. This is used by CDASH to group test results by site
104 site: generic
105 # specify the build name which is used to group test results by build name
106 buildname: tutorials
107
Next, let’s build the tests via newly created profile and take note that it will run all tests with tag python
buildtest build --profile=python-tests
$ buildtest build --profile=python-tests
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:27 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-hello.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-shell.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 2 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Buildspecs By Tag=python
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-hello.yml ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-shell.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 2 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 2
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 2
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 2
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-hello.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-shell.yml: VALID
Total builder objects created: 2
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ python_h │ script │ generic. │ None │ None │ None │ Hello │ /home/d │
│ ello/293 │ │ local.ba │ │ │ │ World │ ocs/che │
│ e8e6a │ │ sh │ │ │ │ python │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/pytho │
│ │ │ │ │ │ │ │ n-hello │
│ │ │ │ │ │ │ │ .yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ circle_a │ script │ generic. │ None │ None │ None │ Calculat │ /home/d │
│ rea/e109 │ │ local.ba │ │ │ │ e circle │ ocs/che │
│ 7174 │ │ sh │ │ │ │ of area │ ckouts/ │
│ │ │ │ │ │ │ given a │ readthe │
│ │ │ │ │ │ │ radius │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/pytho │
│ │ │ │ │ │ │ │ n-shell │
│ │ │ │ │ │ │ │ .yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
python_hello/293e8e6a: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/python-hello/python_hello/293e8e6a
circle_area/e1097174: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/e1097174
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
python_hello/293e8e6a does not have any dependencies adding test to queue
circle_area/e1097174 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━┩
│ python_hello/293e8e6a │
│ circle_area/e1097174 │
└───────────────────────┘
python_hello/293e8e6a: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/python-hello/python_hello/293e8e6a/stage
python_hello/293e8e6a: Running Test via command: bash python_hello_build.sh
python_hello/293e8e6a: Test completed in 0.056028 seconds with returncode: 0
python_hello/293e8e6a: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-hello/python_hello/293e8e6a/python_hello.out
python_hello/293e8e6a: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-hello/python_hello/293e8e6a/python_hello.err
circle_area/e1097174: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/e1097174/stage
circle_area/e1097174: Running Test via command: bash circle_area_build.sh
circle_area/e1097174: Test completed in 0.054836 seconds with returncode: 0
circle_area/e1097174: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/e1097174/circle_area.out
circle_area/e1097174: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/python-shell/circle_area/e1097174/circle_area.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ circle_area/e1097174 │ generic.local.bash │ PASS │ 0 │ 0.055 │
├───────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ python_hello/293e8e6a │ generic.local.bash │ PASS │ 0 │ 0.056 │
└───────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 2/2 Percentage: 100.000%
Failed Tests: 0/2 Percentage: 0.000%
Adding 2 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_go3qugj2.log
You can also specify an alternate location to write configuration file via --write-config-file
when saving profile configuration.
This can be useful if one wants to use a new configuration file without overwriting the current file for testing purposes.
To demonstrate this, we will save the profile to configuration file /tmp/my_config.yml
buildtest build -t python --save-profile=python --write-config-file=/tmp/my_config.yml
$ buildtest build -t python --save-profile=python --write-config-file=/tmp/my_config.yml
Saved profile python to configuration file /tmp/my_config.yml
We can view the profile configuration file by specifying the path to the configuration file.
$ buildtest --config /tmp/my_config.yml config view
────────────────────────────── /tmp/my_config.yml ──────────────────────────────
1 system:
2 generic:
3 hostnames:
4 - .*
5 description: Generic System
6 moduletool: none
7 poolsize: 1
8 pager: false
9 buildspecs:
10 rebuild: false
11 count: 15
12 terse: false
13 report:
14 count: 25
15 terse: false
16 format: name,id,state,runtime,returncode
17 executors:
18 local:
19 bash:
20 description: submit jobs on local machine using bash shell
21 shell: bash
22 sh:
23 description: submit jobs on local machine using sh shell
24 shell: sh
25 csh:
26 description: submit jobs on local machine using csh shell
27 shell: csh
28 compilers:
29 compiler:
30 gcc:
31 builtin_gcc:
32 cc: gcc
33 fc: gfortran
34 cxx: g++
35 cdash:
36 url: https://my.cdash.org/
37 project: buildtest
38 site: generic
39 buildname: tutorials
40 profiles:
41 python:
42 tags:
43 - python
44 validate: false
45 dry-run: false
46 testdir: /tmp/tmpr88132k2/var/tests
47 remove-stagedir: false
48 strict: false
49 prof1:
50 tags:
51 - python
52 validate: false
53 dry-run: false
54 testdir: /tmp/tmpr88132k2/var/tests
55 remove-stagedir: false
56 strict: false
57 prof2:
58 buildspecs:
59 - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/shell_examples.yml
60 validate: false
61 dry-run: false
62 testdir: /tmp/tmpr88132k2/var/tests
63 remove-stagedir: false
64 strict: false
65 python-tests:
66 tags:
67 - python
68 validate: false
69 dry-run: false
70 testdir: /tmp/tmpr88132k2/var/tests
71 remove-stagedir: false
72 strict: false
73
Please note that when using -write-config-file
, the path must be a file path and file must not exist. If you specify
a directory path or file already exists you will get an error message.
Limit Maximum Jobs that can run concurrently (buildtest build --max-jobs
)
Buildtest can cap a limit on number of tests that can run concurrently. This can be set in configuration file via max_jobs
field or overridden on command line option via --max-jobs
. By default, buildtest will run all jobs concurrently, however with
--max-jobs
, buildtest will limit number of concurrent jobs specified by --max-jobs
.
Let’s limit the number of concurrent jobs to 2 tests, take note that buildtest will run 2 tests per iteration, and wait until test is completed and then proceed to next test.
buildtest build -b tutorials/hello_world.yml --rebuild=5 --max-jobs=2
$ buildtest build -b tutorials/hello_world.yml --rebuild=5 --max-jobs=2
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:30 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/hello_world.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/hello_world.yml: VALID
Total builder objects created: 5
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ hello_wo │ script │ generic. │ None │ None │ None │ hello │ /home/d │
│ rld/0992 │ │ local.ba │ │ │ │ world │ ocs/che │
│ 74a7 │ │ sh │ │ │ │ example │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/hello │
│ │ │ │ │ │ │ │ _world. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ hello_wo │ script │ generic. │ None │ None │ None │ hello │ /home/d │
│ rld/c4fa │ │ local.ba │ │ │ │ world │ ocs/che │
│ c494 │ │ sh │ │ │ │ example │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/hello │
│ │ │ │ │ │ │ │ _world. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ hello_wo │ script │ generic. │ None │ None │ None │ hello │ /home/d │
│ rld/dc89 │ │ local.ba │ │ │ │ world │ ocs/che │
│ 65c0 │ │ sh │ │ │ │ example │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/hello │
│ │ │ │ │ │ │ │ _world. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ hello_wo │ script │ generic. │ None │ None │ None │ hello │ /home/d │
│ rld/adc9 │ │ local.ba │ │ │ │ world │ ocs/che │
│ f8bf │ │ sh │ │ │ │ example │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/hello │
│ │ │ │ │ │ │ │ _world. │
│ │ │ │ │ │ │ │ yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ hello_wo │ script │ generic. │ None │ None │ None │ hello │ /home/d │
│ rld/da03 │ │ local.ba │ │ │ │ world │ ocs/che │
│ 4607 │ │ sh │ │ │ │ example │ ckouts/ │
│ │ │ │ │ │ │ │ readthe │
│ │ │ │ │ │ │ │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/hello │
│ │ │ │ │ │ │ │ _world. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
hello_world/099274a7: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/099274a7
hello_world/c4fac494: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/c4fac494
hello_world/dc8965c0: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/dc8965c0
hello_world/adc9f8bf: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/adc9f8bf
hello_world/da034607: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/da034607
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
hello_world/da034607 does not have any dependencies adding test to queue
hello_world/c4fac494 does not have any dependencies adding test to queue
hello_world/099274a7 does not have any dependencies adding test to queue
hello_world/dc8965c0 does not have any dependencies adding test to queue
hello_world/adc9f8bf does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ hello_world/da034607 │
│ hello_world/c4fac494 │
└──────────────────────┘
hello_world/da034607: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/da034607/stage
hello_world/da034607: Running Test via command: bash hello_world_build.sh
hello_world/da034607: Test completed in 0.008779 seconds with returncode: 0
hello_world/da034607: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/da034607/hello_world.out
hello_world/da034607: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/da034607/hello_world.err
hello_world/c4fac494: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/c4fac494/stage
hello_world/c4fac494: Running Test via command: bash hello_world_build.sh
hello_world/c4fac494: Test completed in 0.008446 seconds with returncode: 0
hello_world/c4fac494: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/c4fac494/hello_world.out
hello_world/c4fac494: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/c4fac494/hello_world.err
───────────────────────────────── Iteration 2 ──────────────────────────────────
hello_world/099274a7 does not have any dependencies adding test to queue
hello_world/dc8965c0 does not have any dependencies adding test to queue
hello_world/adc9f8bf does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ hello_world/099274a7 │
│ hello_world/dc8965c0 │
└──────────────────────┘
hello_world/099274a7: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/099274a7/stage
hello_world/099274a7: Running Test via command: bash hello_world_build.sh
hello_world/099274a7: Test completed in 0.00842 seconds with returncode: 0
hello_world/099274a7: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/099274a7/hello_world.out
hello_world/099274a7: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/099274a7/hello_world.err
hello_world/dc8965c0: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/dc8965c0/stage
hello_world/dc8965c0: Running Test via command: bash hello_world_build.sh
hello_world/dc8965c0: Test completed in 0.008419 seconds with returncode: 0
hello_world/dc8965c0: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/dc8965c0/hello_world.out
hello_world/dc8965c0: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/dc8965c0/hello_world.err
───────────────────────────────── Iteration 3 ──────────────────────────────────
hello_world/adc9f8bf does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ hello_world/adc9f8bf │
└──────────────────────┘
hello_world/adc9f8bf: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/adc9f8bf/stage
hello_world/adc9f8bf: Running Test via command: bash hello_world_build.sh
hello_world/adc9f8bf: Test completed in 0.008566 seconds with returncode: 0
hello_world/adc9f8bf: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/adc9f8bf/hello_world.out
hello_world/adc9f8bf: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/hello_world/hello_world/adc9f8bf/hello_world.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ hello_world/adc9f8bf │ generic.local.bash │ PASS │ 0 │ 0.009 │
├──────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ hello_world/099274a7 │ generic.local.bash │ PASS │ 0 │ 0.008 │
├──────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ hello_world/dc8965c0 │ generic.local.bash │ PASS │ 0 │ 0.008 │
├──────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ hello_world/c4fac494 │ generic.local.bash │ PASS │ 0 │ 0.008 │
├──────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ hello_world/da034607 │ generic.local.bash │ PASS │ 0 │ 0.009 │
└──────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 5/5 Percentage: 100.000%
Failed Tests: 0/5 Percentage: 0.000%
Adding 5 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_woh407t2.log
Strict Mode (buildtest build --strict
)
Buildtest has an option to enable strict mode for test execution which can be enabled via --strict
option. If this
is set, buildtest will instead set -eo pipefail
in the generated test which will cause test to exit immediately if any
commands fail. To demonstrate this we have the following buildspec, which runs an ls command for an invalid path followed by
an echo command.
buildspecs:
linux_strict_test:
type: script
executor: generic.local.bash
description: "This example test will show how returncode will change when using --strict flag"
run: |
echo "This is a test"
ls -l /BAD_PATH
echo "This is another test"
If we were to run this test without strict mode, we see the test will pass.
buildtest build -b tutorials/strict_example.yml
$ buildtest build -b tutorials/strict_example.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:32 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/strict_example.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/strict_example.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ linux_st │ script │ generic. │ None │ None │ None │ This │ /home/d │
│ rict_tes │ │ local.ba │ │ │ │ example │ ocs/che │
│ t/f8526a │ │ sh │ │ │ │ test │ ckouts/ │
│ 39 │ │ │ │ │ │ will │ readthe │
│ │ │ │ │ │ │ show how │ docs.or │
│ │ │ │ │ │ │ returnco │ g/user_ │
│ │ │ │ │ │ │ de will │ builds/ │
│ │ │ │ │ │ │ change │ buildte │
│ │ │ │ │ │ │ when │ st/chec │
│ │ │ │ │ │ │ using │ kouts/s │
│ │ │ │ │ │ │ --strict │ table/t │
│ │ │ │ │ │ │ flag │ utorial │
│ │ │ │ │ │ │ │ s/stric │
│ │ │ │ │ │ │ │ t_examp │
│ │ │ │ │ │ │ │ le.yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
linux_strict_test/f8526a39: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/strict_example/linux_strict_test/f8526a39
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
linux_strict_test/f8526a39 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ linux_strict_test/f8526a39 │
└────────────────────────────┘
linux_strict_test/f8526a39: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/strict_example/linux_strict_test/f8526a39/stage
linux_strict_test/f8526a39: Running Test via command: bash linux_strict_test_build.sh
linux_strict_test/f8526a39: Test completed in 0.012416 seconds with returncode: 0
linux_strict_test/f8526a39: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/strict_example/linux_strict_test/f8526a39/linux_strict_test.out
linux_strict_test/f8526a39: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/strict_example/linux_strict_test/f8526a39/linux_strict_test.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ linux_strict_test/f8526 │ generic.local.bash │ PASS │ 0 │ 0.012 │
│ a39 │ │ │ │ │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%
Adding 1 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_54kku3ge.log
Now let’s run the same test with strict mode enabled, we will see the test will fail with a different return code.
buildtest build -b tutorials/strict_example.yml --strict
$ buildtest build -b tutorials/strict_example.yml --strict
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:33 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/strict_example.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/strict_example.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ linux_st │ script │ generic. │ None │ None │ None │ This │ /home/d │
│ rict_tes │ │ local.ba │ │ │ │ example │ ocs/che │
│ t/8bbbb6 │ │ sh │ │ │ │ test │ ckouts/ │
│ ee │ │ │ │ │ │ will │ readthe │
│ │ │ │ │ │ │ show how │ docs.or │
│ │ │ │ │ │ │ returnco │ g/user_ │
│ │ │ │ │ │ │ de will │ builds/ │
│ │ │ │ │ │ │ change │ buildte │
│ │ │ │ │ │ │ when │ st/chec │
│ │ │ │ │ │ │ using │ kouts/s │
│ │ │ │ │ │ │ --strict │ table/t │
│ │ │ │ │ │ │ flag │ utorial │
│ │ │ │ │ │ │ │ s/stric │
│ │ │ │ │ │ │ │ t_examp │
│ │ │ │ │ │ │ │ le.yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
linux_strict_test/8bbbb6ee: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/strict_example/linux_strict_test/8bbbb6ee
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
linux_strict_test/8bbbb6ee does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ linux_strict_test/8bbbb6ee │
└────────────────────────────┘
linux_strict_test/8bbbb6ee: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/strict_example/linux_strict_test/8bbbb6ee/stage
linux_strict_test/8bbbb6ee: Running Test via command: bash linux_strict_test_build.sh
linux_strict_test/8bbbb6ee: failed to submit job with returncode: 2
linux_strict_test/8bbbb6ee: Detected failure in running test, will attempt to retry test: 1 times
linux_strict_test/8bbbb6ee: Run - 1/1
linux_strict_test/8bbbb6ee: Running Test via command: bash linux_strict_test_build.sh
linux_strict_test/8bbbb6ee: failed to submit job with returncode: 2
linux_strict_test/8bbbb6ee: Test completed in 0.024819 seconds with returncode: 2
linux_strict_test/8bbbb6ee: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/strict_example/linux_strict_test/8bbbb6ee/linux_strict_test.out
linux_strict_test/8bbbb6ee: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/strict_example/linux_strict_test/8bbbb6ee/linux_strict_test.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ linux_strict_test/8bbbb │ generic.local.bash │ FAIL │ 2 │ 0.025 │
│ 6ee │ │ │ │ │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 0/1 Percentage: 0.000%
Failed Tests: 1/1 Percentage: 100.000%
Adding 1 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_wluutgdk.log
We can see the generated test using buildtest inspect query -t and we will see the test script has set -eo pipefail in the generated test.
$ buildtest inspect query -t linux_strict_test
──────────── linux_strict_test/8bbbb6ee-53c8-4750-b38a-e5a9ef1376c6 ────────────
Executor: generic.local.bash
Description: This example test will show how returncode will change when using --strict flag
State: FAIL
Returncode: 2
Runtime: 0.024819 sec
Starttime: 2024/09/05 15:35:33
Endtime: 2024/09/05 15:35:33
Command: bash linux_strict_test_build.sh
Test Script: /tmp/tmpr88132k2/var/tests/generic.local.bash/strict_example/linux_strict_test/8bbbb6ee/linux_strict_test.sh
Build Script: /tmp/tmpr88132k2/var/tests/generic.local.bash/strict_example/linux_strict_test/8bbbb6ee/linux_strict_test_build.sh
Output File: /tmp/tmpr88132k2/var/tests/generic.local.bash/strict_example/linux_strict_test/8bbbb6ee/linux_strict_test.out
Error File: /tmp/tmpr88132k2/var/tests/generic.local.bash/strict_example/linux_strict_test/8bbbb6ee/linux_strict_test.err
Log File: /tmp/tmpr88132k2/var/logs/buildtest_wluutgdk.log
───────────────────────────────── Test File: ──────────────────────────────────
#!/usr/bin/bash
set -eo pipefail
# Content of run section
echo "This is a test"
ls -l /BAD_PATH
echo "This is another test"
────────────────────────────────────────────────────────────────────────────────
Display Mode (buildtest build --display
)
Buildtest can display output of test content and stream outout and error file to console. This can be useful if you want to see how the test is generated for debugging purposes.
In order to use this functionality, you can specify the --display
option which takes either output
or test
.
When output
is specified, buildtest will display output and error files to console. When test
is specified, buildtest will display the content of the test and build script. You can append the --display
option
if you want to specify both options. Shown below we run a test and display both output and test.
buildtest build -b tutorials/vars.yml --display output --display test
$ buildtest build -b tutorials/vars.yml --display output --display test
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-25534835-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2024/09/05 15:35:35 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 2.1 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.9.19 │
│ Configuration File: /tmp/tmpr88132k2/config.yml │
│ Test Directory: /tmp/tmpr88132k2/var/tests │
│ Report File: /tmp/tmpr88132k2/var/report.json │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/vars.yml ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ Total: 1 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/vars.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ ┃ ┃ ┃ ┃ ┃ ┃ descript ┃ buildsp ┃
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion ┃ ecs ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variable │ script │ generic. │ None │ None │ None │ Declare │ /home/d │
│ s_bash/b │ │ local.ba │ │ │ │ shell │ ocs/che │
│ f470cea │ │ sh │ │ │ │ variable │ ckouts/ │
│ │ │ │ │ │ │ s in │ readthe │
│ │ │ │ │ │ │ bash │ docs.or │
│ │ │ │ │ │ │ │ g/user_ │
│ │ │ │ │ │ │ │ builds/ │
│ │ │ │ │ │ │ │ buildte │
│ │ │ │ │ │ │ │ st/chec │
│ │ │ │ │ │ │ │ kouts/s │
│ │ │ │ │ │ │ │ table/t │
│ │ │ │ │ │ │ │ utorial │
│ │ │ │ │ │ │ │ s/vars. │
│ │ │ │ │ │ │ │ yml │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
variables_bash/bf470cea: Creating Test Directory: /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/bf470cea
──────────────── variables_bash/bf470cea: Start of Test Script ─────────────────
#!/usr/bin/bash
X="1"
Y="2"
literalstring="this is a literal string"
singlequote="\'singlequote\'"
doublequote="\"doublequote\""
current_user="$(whoami)"
num_files="`find $HOME -type f -maxdepth 1 | wc -l`"
multiline_string="Hello my name is Bob \n
I am 30 years old
"
# Content of run section
echo "$X+$Y="$(($X+$Y))
echo $literalstring
echo $singlequote
echo $doublequote
echo "current user:" $current_user
echo "number of files:" $num_files
echo -e $multiline_string
────────────────────────────────────────────────────────────────────────────────
──────────────── variables_bash/bf470cea: Start of Build Script ────────────────
#!/bin/bash
# Function to handle all signals and perform cleanup
function cleanup() {
echo "Signal trapped. Performing cleanup before exiting."
exitcode=$?
echo "buildtest: command \`$BASH_COMMAND' failed (exit code: $exitcode)"
exit $exitcode
}
# Trap all signals and call the cleanup function
trap cleanup SIGINT SIGTERM SIGHUP SIGQUIT SIGABRT SIGKILL SIGALRM SIGPIPE SIGTE
export BUILDTEST_TEST_NAME=variables_bash
export BUILDTEST_TEST_ROOT=/tmp/tmpr88132k2/var/tests/generic.local.bash/vars/va
export BUILDTEST_BUILDSPEC_DIR=/home/docs/checkouts/readthedocs.org/user_builds/
export BUILDTEST_STAGE_DIR=/tmp/tmpr88132k2/var/tests/generic.local.bash/vars/va
# source executor startup script
source /tmp/tmpr88132k2/var/executor/generic.local.bash/before_script.sh
# Run generated script
bash /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/bf470cea
# Get return code
returncode=$?
# Exit with return code
exit $returncode
────────────────────────────────────────────────────────────────────────────────
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/bf470cea does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ variables_bash/bf470cea │
└─────────────────────────┘
variables_bash/bf470cea: Current Working Directory : /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/bf470cea/stage
variables_bash/bf470cea: Running Test via command: bash variables_bash_build.sh
─────────────────── variables_bash/bf470cea: Start of Output ───────────────────
1+2=3
this is a literal string
\'singlequote\'
"doublequote"
current user: docs
number of files: 4
Hello my name is Bob
I am 30 years old
────────────────────────────────────────────────────────────────────────────────
variables_bash/bf470cea: Test completed in 0.019896 seconds with returncode: 0
variables_bash/bf470cea: Writing output file - /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/bf470cea/variables_bash.out
variables_bash/bf470cea: Writing error file - /tmp/tmpr88132k2/var/tests/generic.local.bash/vars/variables_bash/bf470cea/variables_bash.err
Test Summary
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ executor ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ variables_bash/bf470cea │ generic.local.bash │ PASS │ 0 │ 0.020 │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘
Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%
Adding 1 test results to report file: /tmp/tmpr88132k2/var/report.json
Writing Logfile to /tmp/tmpr88132k2/var/logs/buildtest_9am2sjcz.log