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 ...]]
                                            [--limit LIMIT]
                                            [--max-jobs MAX_JOBS]
                                            [--remove-stagedir]
                                            [--rebuild REBUILD]
                                            [--retry RETRY] [-s {parse,build}]
                                            [--testdir TESTDIR]
                                            [--timeout TIMEOUT]
                                            [--save-profile SAVE_PROFILE]
                                            [--profile PROFILE]

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

  --limit LIMIT         Limit number of tests that can be run.
  --max-jobs MAX_JOBS   Maximum number of jobs that can be run concurrently.
  --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
  -s {parse,build}, --stage {parse,build}
                        Control behavior of buildtest build to stop execution
                        after 'parse' or 'build' stage
  --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
  --save-profile SAVE_PROFILE
                        Save buildtest command options into a profile and
                        update configuration file
  --profile PROFILE     Specify a profile to load from configuration file

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/tmpjcb9dx2w/var/buildspecs/cache.json
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:16:28                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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 │
│ 7e5a942  │        │ 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/17e5a942: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/17e5a942
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/17e5a942 does not have any dependencies adding test to queue
 Builders Eligible to Run  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                 ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ variables_bash/17e5a942 │
└─────────────────────────┘
variables_bash/17e5a942: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/17e5a942/stage
variables_bash/17e5a942: Running Test via command: bash variables_bash_build.sh
variables_bash/17e5a942: Test completed in 0.009769 seconds with returncode: 0
variables_bash/17e5a942: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/17e5a942/variables_bash.out
variables_bash/17e5a942: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/17e5a942/variables_bash.err
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ variables_bash/17e5a942 │ generic.local.bash │ PASS   │ 0          │ 0.010   │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%


Adding 1 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_uaulb51y.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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:37                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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/disk_usage.yml                                   ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/systemd-default-target.yml                       ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/ulimits.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/general_tests/configuration/systemd-default-target.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 │
│ /b2bc14e │        │ sh       │          │       │       │ Swap     │ ckouts/ │
│ a        │        │          │          │       │       │ 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/c85f1a │        │          │          │       │       │ set to   │ readthe │
│ 6e       │        │          │          │       │       │ 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/ │
│ /ccd5afb │        │          │          │       │       │ to       │ readthe │
│ 4        │        │          │          │       │       │ 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/672da │        │          │          │       │       │ set to   │ readthe │
│ 4ca      │        │          │          │       │       │ 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/ │
│ 5e55ea50 │        │          │          │       │       │ 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/7e91b │        │          │          │       │       │ descript │ readthe │
│ 781      │        │          │          │       │       │ 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/52e │        │          │          │       │       │ of user  │ readthe │
│ a69fc    │        │          │          │       │       │ 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 │
│ 7c24b3cc │        │ 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  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ systemd_ │ script │ generic. │ None     │ None  │ None  │ check if │ /home/d │
│ default_ │        │ local.ba │          │       │       │ default  │ ocs/che │
│ target/6 │        │ sh       │          │       │       │ target   │ ckouts/ │
│ b4c6f2d  │        │          │          │       │       │ 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    │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
kernel_swapusage/b2bc14ea: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/kernel_state/kernel_swapusage/b2bc14ea
ulimit_filelock_unlimited/c85f1a6e: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/c85f1a6e
ulimit_cputime_unlimited/ccd5afb4: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/ccd5afb4
ulimit_stacksize_unlimited/672da4ca: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/672da4ca
ulimit_vmsize_unlimited/5e55ea50: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/5e55ea50
ulimit_filedescriptor_4096/7e91b781: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/7e91b781
ulimit_max_user_process_2048/52ea69fc: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/52ea69fc
root_disk_usage/7c24b3cc: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/disk_usage/root_disk_usage/7c24b3cc
systemd_default_target/6b4c6f2d: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/6b4c6f2d
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
root_disk_usage/7c24b3cc does not have any dependencies adding test to queue
ulimit_stacksize_unlimited/672da4ca does not have any dependencies adding test to queue
ulimit_vmsize_unlimited/5e55ea50 does not have any dependencies adding test to queue
ulimit_cputime_unlimited/ccd5afb4 does not have any dependencies adding test to queue
systemd_default_target/6b4c6f2d does not have any dependencies adding test to queue
ulimit_filelock_unlimited/c85f1a6e does not have any dependencies adding test to queue
ulimit_max_user_process_2048/52ea69fc does not have any dependencies adding test to queue
ulimit_filedescriptor_4096/7e91b781 does not have any dependencies adding test to queue
kernel_swapusage/b2bc14ea does not have any dependencies adding test to queue
        Builders Eligible to Run         
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                               ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ root_disk_usage/7c24b3cc              │
│ ulimit_stacksize_unlimited/672da4ca   │
│ ulimit_vmsize_unlimited/5e55ea50      │
│ ulimit_cputime_unlimited/ccd5afb4     │
│ systemd_default_target/6b4c6f2d       │
│ ulimit_filelock_unlimited/c85f1a6e    │
│ ulimit_max_user_process_2048/52ea69fc │
│ ulimit_filedescriptor_4096/7e91b781   │
│ kernel_swapusage/b2bc14ea             │
└───────────────────────────────────────┘
root_disk_usage/7c24b3cc: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/disk_usage/root_disk_usage/7c24b3cc/stage
root_disk_usage/7c24b3cc: Running Test via command: bash root_disk_usage_build.sh
root_disk_usage/7c24b3cc: Test completed in 0.009653 seconds with returncode: 0
root_disk_usage/7c24b3cc: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/disk_usage/root_disk_usage/7c24b3cc/root_disk_usage.out
root_disk_usage/7c24b3cc: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/disk_usage/root_disk_usage/7c24b3cc/root_disk_usage.err
ulimit_stacksize_unlimited/672da4ca: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/672da4ca/stage
ulimit_stacksize_unlimited/672da4ca: Running Test via command: bash ulimit_stacksize_unlimited_build.sh
ulimit_stacksize_unlimited/672da4ca: Test completed in 0.005584 seconds with returncode: 0
ulimit_stacksize_unlimited/672da4ca: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/672da4ca/ulimit_stacksize_unlimited.out
ulimit_stacksize_unlimited/672da4ca: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/672da4ca/ulimit_stacksize_unlimited.err
ulimit_stacksize_unlimited/672da4ca: performing regular expression - '^unlimited$' on file: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/672da4ca/ulimit_stacksize_unlimited.out
ulimit_stacksize_unlimited/672da4ca: Regular Expression Match - Failed!
ulimit_vmsize_unlimited/5e55ea50: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/5e55ea50/stage
ulimit_vmsize_unlimited/5e55ea50: Running Test via command: bash ulimit_vmsize_unlimited_build.sh
ulimit_vmsize_unlimited/5e55ea50: Test completed in 0.005629 seconds with returncode: 0
ulimit_vmsize_unlimited/5e55ea50: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/5e55ea50/ulimit_vmsize_unlimited.out
ulimit_vmsize_unlimited/5e55ea50: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/5e55ea50/ulimit_vmsize_unlimited.err
ulimit_vmsize_unlimited/5e55ea50: performing regular expression - '^unlimited$' on file: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/5e55ea50/ulimit_vmsize_unlimited.out
ulimit_vmsize_unlimited/5e55ea50: Regular Expression Match - Success!
ulimit_cputime_unlimited/ccd5afb4: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/ccd5afb4/stage
ulimit_cputime_unlimited/ccd5afb4: Running Test via command: bash ulimit_cputime_unlimited_build.sh
ulimit_cputime_unlimited/ccd5afb4: Test completed in 0.005551 seconds with returncode: 0
ulimit_cputime_unlimited/ccd5afb4: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/ccd5afb4/ulimit_cputime_unlimited.out
ulimit_cputime_unlimited/ccd5afb4: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/ccd5afb4/ulimit_cputime_unlimited.err
ulimit_cputime_unlimited/ccd5afb4: performing regular expression - '^unlimited$' on file: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/ccd5afb4/ulimit_cputime_unlimited.out
ulimit_cputime_unlimited/ccd5afb4: Regular Expression Match - Success!
systemd_default_target/6b4c6f2d: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/6b4c6f2d/stage
systemd_default_target/6b4c6f2d: Running Test via command: bash systemd_default_target_build.sh
systemd_default_target/6b4c6f2d: failed to submit job with returncode: 1
────────────── Error Message for systemd_default_target/6b4c6f2d ───────────────

systemd_default_target/6b4c6f2d: Detected failure in running test, will attempt to retry test: 1 times
systemd_default_target/6b4c6f2d: Run - 1/1
systemd_default_target/6b4c6f2d: Running Test via command: bash systemd_default_target_build.sh
systemd_default_target/6b4c6f2d: failed to submit job with returncode: 1
systemd_default_target/6b4c6f2d: Test completed in 0.019581 seconds with returncode: 1
systemd_default_target/6b4c6f2d: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/6b4c6f2d/systemd_default_target.out
systemd_default_target/6b4c6f2d: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/6b4c6f2d/systemd_default_target.err
ulimit_filelock_unlimited/c85f1a6e: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/c85f1a6e/stage
ulimit_filelock_unlimited/c85f1a6e: Running Test via command: bash ulimit_filelock_unlimited_build.sh
ulimit_filelock_unlimited/c85f1a6e: Test completed in 0.005889 seconds with returncode: 0
ulimit_filelock_unlimited/c85f1a6e: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/c85f1a6e/ulimit_filelock_unlimited.out
ulimit_filelock_unlimited/c85f1a6e: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/c85f1a6e/ulimit_filelock_unlimited.err
ulimit_filelock_unlimited/c85f1a6e: performing regular expression - '^unlimited$' on file: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/c85f1a6e/ulimit_filelock_unlimited.out
ulimit_filelock_unlimited/c85f1a6e: Regular Expression Match - Success!
ulimit_max_user_process_2048/52ea69fc: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/52ea69fc/stage
ulimit_max_user_process_2048/52ea69fc: Running Test via command: bash ulimit_max_user_process_2048_build.sh
ulimit_max_user_process_2048/52ea69fc: Test completed in 0.006538 seconds with returncode: 0
ulimit_max_user_process_2048/52ea69fc: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/52ea69fc/ulimit_max_user_process_2048.out
ulimit_max_user_process_2048/52ea69fc: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/52ea69fc/ulimit_max_user_process_2048.err
ulimit_max_user_process_2048/52ea69fc: performing regular expression - '^2048$' on file: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/52ea69fc/ulimit_max_user_process_2048.out
ulimit_max_user_process_2048/52ea69fc: Regular Expression Match - Failed!
ulimit_filedescriptor_4096/7e91b781: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/7e91b781/stage
ulimit_filedescriptor_4096/7e91b781: Running Test via command: bash ulimit_filedescriptor_4096_build.sh
ulimit_filedescriptor_4096/7e91b781: Test completed in 0.006381 seconds with returncode: 0
ulimit_filedescriptor_4096/7e91b781: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/7e91b781/ulimit_filedescriptor_4096.out
ulimit_filedescriptor_4096/7e91b781: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/7e91b781/ulimit_filedescriptor_4096.err
ulimit_filedescriptor_4096/7e91b781: performing regular expression - '^4096$' on file: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/7e91b781/ulimit_filedescriptor_4096.out
ulimit_filedescriptor_4096/7e91b781: Regular Expression Match - Failed!
kernel_swapusage/b2bc14ea: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/kernel_state/kernel_swapusage/b2bc14ea/stage
kernel_swapusage/b2bc14ea: Running Test via command: bash kernel_swapusage_build.sh
kernel_swapusage/b2bc14ea: failed to submit job with returncode: 255
───────────────── Error Message for kernel_swapusage/b2bc14ea ──────────────────
sysctl: cannot stat /proc/sys/kernel/swapusage: No such file or directory

kernel_swapusage/b2bc14ea: Detected failure in running test, will attempt to retry test: 1 times
kernel_swapusage/b2bc14ea: Run - 1/1
kernel_swapusage/b2bc14ea: Running Test via command: bash kernel_swapusage_build.sh
kernel_swapusage/b2bc14ea: failed to submit job with returncode: 255
kernel_swapusage/b2bc14ea: Test completed in 0.017747 seconds with returncode: 255
kernel_swapusage/b2bc14ea: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/kernel_state/kernel_swapusage/b2bc14ea/kernel_swapusage.out
kernel_swapusage/b2bc14ea: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/kernel_state/kernel_swapusage/b2bc14ea/kernel_swapusage.err
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ ulimit_stacksize_unlimi │ generic.local.bash │ FAIL   │ 0          │ 0.006   │
│ ted/672da4ca            │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_filelock_unlimit │ generic.local.bash │ PASS   │ 0          │ 0.006   │
│ ed/c85f1a6e             │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ root_disk_usage/7c24b3c │ generic.local.bash │ PASS   │ 0          │ 0.010   │
│ c                       │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ kernel_swapusage/b2bc14 │ generic.local.bash │ FAIL   │ 255        │ 0.018   │
│ ea                      │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ systemd_default_target/ │ generic.local.bash │ FAIL   │ 1          │ 0.020   │
│ 6b4c6f2d                │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_cputime_unlimite │ generic.local.bash │ PASS   │ 0          │ 0.006   │
│ d/ccd5afb4              │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_vmsize_unlimited │ generic.local.bash │ PASS   │ 0          │ 0.006   │
│ /5e55ea50               │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_max_user_process │ generic.local.bash │ FAIL   │ 0          │ 0.007   │
│ _2048/52ea69fc          │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_filedescriptor_4 │ generic.local.bash │ FAIL   │ 0          │ 0.006   │
│ 096/7e91b781            │                    │        │            │         │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 4/9 Percentage: 44.444%
Failed Tests: 5/9 Percentage: 55.556%


Adding 9 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_dwy450g4.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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:38                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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/disk_usage.yml                                   ║
║ /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/ ║
║ tutorials/vars.yml                                                           ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/systemd-default-target.yml                       ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/disk_usage.yml: VALID
/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/tutorials/vars.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/general_tests/configuration/systemd-default-target.yml: VALID
Total builder objects created: 10
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃          ┃        ┃          ┃          ┃       ┃       ┃ descript ┃ buildsp ┃
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion      ┃ ecs     ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ root_dis │ script │ generic. │ None     │ None  │ None  │ Check    │ /home/d │
│ k_usage/ │        │ local.ba │          │       │       │ root     │ ocs/che │
│ f7dbab70 │        │ 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  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ kernel_s │ script │ generic. │ None     │ None  │ None  │ Retrieve │ /home/d │
│ wapusage │        │ local.ba │          │       │       │ Kernel   │ ocs/che │
│ /3e411cf │        │ sh       │          │       │       │ Swap     │ ckouts/ │
│ 5        │        │          │          │       │       │ 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/163934 │        │          │          │       │       │ set to   │ readthe │
│ 54       │        │          │          │       │       │ 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/ │
│ /c0c87a8 │        │          │          │       │       │ to       │ readthe │
│ a        │        │          │          │       │       │ 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/dde87 │        │          │          │       │       │ set to   │ readthe │
│ e9a      │        │          │          │       │       │ 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/ │
│ ea229fc8 │        │          │          │       │       │ 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/e1b2b │        │          │          │       │       │ descript │ readthe │
│ 7c9      │        │          │          │       │       │ 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/bb9 │        │          │          │       │       │ of user  │ readthe │
│ 98993    │        │          │          │       │       │ 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     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ variable │ script │ generic. │ None     │ None  │ None  │ Declare  │ /home/d │
│ s_bash/f │        │ local.ba │          │       │       │ shell    │ ocs/che │
│ 0ba0142  │        │ sh       │          │       │       │ variable │ ckouts/ │
│          │        │          │          │       │       │ s in     │ readthe │
│          │        │          │          │       │       │ bash     │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/s │
│          │        │          │          │       │       │          │ table/t │
│          │        │          │          │       │       │          │ utorial │
│          │        │          │          │       │       │          │ s/vars. │
│          │        │          │          │       │       │          │ yml     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ systemd_ │ script │ generic. │ None     │ None  │ None  │ check if │ /home/d │
│ default_ │        │ local.ba │          │       │       │ default  │ ocs/che │
│ target/a │        │ sh       │          │       │       │ target   │ ckouts/ │
│ 0c9a2e6  │        │          │          │       │       │ 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    │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
root_disk_usage/f7dbab70: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/disk_usage/root_disk_usage/f7dbab70
kernel_swapusage/3e411cf5: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3e411cf5
ulimit_filelock_unlimited/16393454: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/16393454
ulimit_cputime_unlimited/c0c87a8a: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/c0c87a8a
ulimit_stacksize_unlimited/dde87e9a: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/dde87e9a
ulimit_vmsize_unlimited/ea229fc8: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/ea229fc8
ulimit_filedescriptor_4096/e1b2b7c9: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/e1b2b7c9
ulimit_max_user_process_2048/bb998993: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/bb998993
variables_bash/f0ba0142: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/f0ba0142
systemd_default_target/a0c9a2e6: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/a0c9a2e6
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/f0ba0142 does not have any dependencies adding test to queue
ulimit_vmsize_unlimited/ea229fc8 does not have any dependencies adding test to queue
ulimit_max_user_process_2048/bb998993 does not have any dependencies adding test to queue
systemd_default_target/a0c9a2e6 does not have any dependencies adding test to queue
kernel_swapusage/3e411cf5 does not have any dependencies adding test to queue
ulimit_stacksize_unlimited/dde87e9a does not have any dependencies adding test to queue
root_disk_usage/f7dbab70 does not have any dependencies adding test to queue
ulimit_filelock_unlimited/16393454 does not have any dependencies adding test to queue
ulimit_filedescriptor_4096/e1b2b7c9 does not have any dependencies adding test to queue
ulimit_cputime_unlimited/c0c87a8a does not have any dependencies adding test to queue
        Builders Eligible to Run         
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                               ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ variables_bash/f0ba0142               │
│ ulimit_vmsize_unlimited/ea229fc8      │
│ ulimit_max_user_process_2048/bb998993 │
│ systemd_default_target/a0c9a2e6       │
│ kernel_swapusage/3e411cf5             │
│ ulimit_stacksize_unlimited/dde87e9a   │
│ root_disk_usage/f7dbab70              │
│ ulimit_filelock_unlimited/16393454    │
│ ulimit_filedescriptor_4096/e1b2b7c9   │
│ ulimit_cputime_unlimited/c0c87a8a     │
└───────────────────────────────────────┘
variables_bash/f0ba0142: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/f0ba0142/stage
variables_bash/f0ba0142: Running Test via command: bash variables_bash_build.sh
variables_bash/f0ba0142: Test completed in 0.009573 seconds with returncode: 0
variables_bash/f0ba0142: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/f0ba0142/variables_bash.out
variables_bash/f0ba0142: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/f0ba0142/variables_bash.err
ulimit_vmsize_unlimited/ea229fc8: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/ea229fc8/stage
ulimit_vmsize_unlimited/ea229fc8: Running Test via command: bash ulimit_vmsize_unlimited_build.sh
ulimit_vmsize_unlimited/ea229fc8: Test completed in 0.005566 seconds with returncode: 0
ulimit_vmsize_unlimited/ea229fc8: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/ea229fc8/ulimit_vmsize_unlimited.out
ulimit_vmsize_unlimited/ea229fc8: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/ea229fc8/ulimit_vmsize_unlimited.err
ulimit_vmsize_unlimited/ea229fc8: performing regular expression - '^unlimited$' on file: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/ea229fc8/ulimit_vmsize_unlimited.out
ulimit_vmsize_unlimited/ea229fc8: Regular Expression Match - Success!
ulimit_max_user_process_2048/bb998993: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/bb998993/stage
ulimit_max_user_process_2048/bb998993: Running Test via command: bash ulimit_max_user_process_2048_build.sh
ulimit_max_user_process_2048/bb998993: Test completed in 0.005555 seconds with returncode: 0
ulimit_max_user_process_2048/bb998993: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/bb998993/ulimit_max_user_process_2048.out
ulimit_max_user_process_2048/bb998993: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/bb998993/ulimit_max_user_process_2048.err
ulimit_max_user_process_2048/bb998993: performing regular expression - '^2048$' on file: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/bb998993/ulimit_max_user_process_2048.out
ulimit_max_user_process_2048/bb998993: Regular Expression Match - Failed!
systemd_default_target/a0c9a2e6: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/a0c9a2e6/stage
systemd_default_target/a0c9a2e6: Running Test via command: bash systemd_default_target_build.sh
systemd_default_target/a0c9a2e6: failed to submit job with returncode: 1
────────────── Error Message for systemd_default_target/a0c9a2e6 ───────────────

systemd_default_target/a0c9a2e6: Detected failure in running test, will attempt to retry test: 1 times
systemd_default_target/a0c9a2e6: Run - 1/1
systemd_default_target/a0c9a2e6: Running Test via command: bash systemd_default_target_build.sh
systemd_default_target/a0c9a2e6: failed to submit job with returncode: 1
systemd_default_target/a0c9a2e6: Test completed in 0.019238 seconds with returncode: 1
systemd_default_target/a0c9a2e6: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/a0c9a2e6/systemd_default_target.out
systemd_default_target/a0c9a2e6: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/a0c9a2e6/systemd_default_target.err
kernel_swapusage/3e411cf5: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3e411cf5/stage
kernel_swapusage/3e411cf5: Running Test via command: bash kernel_swapusage_build.sh
kernel_swapusage/3e411cf5: failed to submit job with returncode: 255
───────────────── Error Message for kernel_swapusage/3e411cf5 ──────────────────
sysctl: cannot stat /proc/sys/kernel/swapusage: No such file or directory

kernel_swapusage/3e411cf5: Detected failure in running test, will attempt to retry test: 1 times
kernel_swapusage/3e411cf5: Run - 1/1
kernel_swapusage/3e411cf5: Running Test via command: bash kernel_swapusage_build.sh
kernel_swapusage/3e411cf5: failed to submit job with returncode: 255
kernel_swapusage/3e411cf5: Test completed in 0.016519 seconds with returncode: 255
kernel_swapusage/3e411cf5: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3e411cf5/kernel_swapusage.out
kernel_swapusage/3e411cf5: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3e411cf5/kernel_swapusage.err
ulimit_stacksize_unlimited/dde87e9a: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/dde87e9a/stage
ulimit_stacksize_unlimited/dde87e9a: Running Test via command: bash ulimit_stacksize_unlimited_build.sh
ulimit_stacksize_unlimited/dde87e9a: Test completed in 0.005633 seconds with returncode: 0
ulimit_stacksize_unlimited/dde87e9a: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/dde87e9a/ulimit_stacksize_unlimited.out
ulimit_stacksize_unlimited/dde87e9a: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/dde87e9a/ulimit_stacksize_unlimited.err
ulimit_stacksize_unlimited/dde87e9a: performing regular expression - '^unlimited$' on file: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/dde87e9a/ulimit_stacksize_unlimited.out
ulimit_stacksize_unlimited/dde87e9a: Regular Expression Match - Failed!
root_disk_usage/f7dbab70: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/disk_usage/root_disk_usage/f7dbab70/stage
root_disk_usage/f7dbab70: Running Test via command: bash root_disk_usage_build.sh
root_disk_usage/f7dbab70: Test completed in 0.009164 seconds with returncode: 0
root_disk_usage/f7dbab70: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/disk_usage/root_disk_usage/f7dbab70/root_disk_usage.out
root_disk_usage/f7dbab70: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/disk_usage/root_disk_usage/f7dbab70/root_disk_usage.err
ulimit_filelock_unlimited/16393454: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/16393454/stage
ulimit_filelock_unlimited/16393454: Running Test via command: bash ulimit_filelock_unlimited_build.sh
ulimit_filelock_unlimited/16393454: Test completed in 0.006174 seconds with returncode: 0
ulimit_filelock_unlimited/16393454: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/16393454/ulimit_filelock_unlimited.out
ulimit_filelock_unlimited/16393454: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/16393454/ulimit_filelock_unlimited.err
ulimit_filelock_unlimited/16393454: performing regular expression - '^unlimited$' on file: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/16393454/ulimit_filelock_unlimited.out
ulimit_filelock_unlimited/16393454: Regular Expression Match - Success!
ulimit_filedescriptor_4096/e1b2b7c9: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/e1b2b7c9/stage
ulimit_filedescriptor_4096/e1b2b7c9: Running Test via command: bash ulimit_filedescriptor_4096_build.sh
ulimit_filedescriptor_4096/e1b2b7c9: Test completed in 0.006113 seconds with returncode: 0
ulimit_filedescriptor_4096/e1b2b7c9: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/e1b2b7c9/ulimit_filedescriptor_4096.out
ulimit_filedescriptor_4096/e1b2b7c9: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/e1b2b7c9/ulimit_filedescriptor_4096.err
ulimit_filedescriptor_4096/e1b2b7c9: performing regular expression - '^4096$' on file: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/e1b2b7c9/ulimit_filedescriptor_4096.out
ulimit_filedescriptor_4096/e1b2b7c9: Regular Expression Match - Failed!
ulimit_cputime_unlimited/c0c87a8a: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/c0c87a8a/stage
ulimit_cputime_unlimited/c0c87a8a: Running Test via command: bash ulimit_cputime_unlimited_build.sh
ulimit_cputime_unlimited/c0c87a8a: Test completed in 0.006413 seconds with returncode: 0
ulimit_cputime_unlimited/c0c87a8a: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/c0c87a8a/ulimit_cputime_unlimited.out
ulimit_cputime_unlimited/c0c87a8a: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/c0c87a8a/ulimit_cputime_unlimited.err
ulimit_cputime_unlimited/c0c87a8a: performing regular expression - '^unlimited$' on file: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/c0c87a8a/ulimit_cputime_unlimited.out
ulimit_cputime_unlimited/c0c87a8a: Regular Expression Match - Success!
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ variables_bash/f0ba0142 │ generic.local.bash │ PASS   │ 0          │ 0.010   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_filelock_unlimit │ generic.local.bash │ PASS   │ 0          │ 0.006   │
│ ed/16393454             │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_stacksize_unlimi │ generic.local.bash │ FAIL   │ 0          │ 0.006   │
│ ted/dde87e9a            │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ systemd_default_target/ │ generic.local.bash │ FAIL   │ 1          │ 0.019   │
│ a0c9a2e6                │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ root_disk_usage/f7dbab7 │ generic.local.bash │ PASS   │ 0          │ 0.009   │
│ 0                       │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ kernel_swapusage/3e411c │ generic.local.bash │ FAIL   │ 255        │ 0.017   │
│ f5                      │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_max_user_process │ generic.local.bash │ FAIL   │ 0          │ 0.006   │
│ _2048/bb998993          │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_filedescriptor_4 │ generic.local.bash │ FAIL   │ 0          │ 0.006   │
│ 096/e1b2b7c9            │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_cputime_unlimite │ generic.local.bash │ PASS   │ 0          │ 0.006   │
│ d/c0c87a8a              │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ ulimit_vmsize_unlimited │ generic.local.bash │ PASS   │ 0          │ 0.006   │
│ /ea229fc8               │                    │        │            │         │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 5/10 Percentage: 50.000%
Failed Tests: 5/10 Percentage: 50.000%


Adding 10 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_z8e0vlmo.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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:40                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/var/report.json                         │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
There are no 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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:41                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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/disk_usage.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/kernel_state.yml                                 ║
╚══════════════════════════════════════════════════════════════════════════════╝
                              Excluded buildspecs                               
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ general_tests/configuration/ulimits.yml                                      ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/disk_usage.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/kernel_state.yml: VALID
Total builder objects created: 3
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃          ┃        ┃          ┃          ┃       ┃       ┃ descript ┃ buildsp ┃
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion      ┃ ecs     ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ root_dis │ script │ generic. │ None     │ None  │ None  │ Check    │ /home/d │
│ k_usage/ │        │ local.ba │          │       │       │ root     │ ocs/che │
│ 429e7b9d │        │ 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  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ systemd_ │ script │ generic. │ None     │ None  │ None  │ check if │ /home/d │
│ default_ │        │ local.ba │          │       │       │ default  │ ocs/che │
│ target/c │        │ sh       │          │       │       │ target   │ ckouts/ │
│ 81b9c7e  │        │          │          │       │       │ 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    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ kernel_s │ script │ generic. │ None     │ None  │ None  │ Retrieve │ /home/d │
│ wapusage │        │ local.ba │          │       │       │ Kernel   │ ocs/che │
│ /3cd09d9 │        │ sh       │          │       │       │ Swap     │ ckouts/ │
│ 5        │        │          │          │       │       │ 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       │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
root_disk_usage/429e7b9d: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/disk_usage/root_disk_usage/429e7b9d
systemd_default_target/c81b9c7e: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/c81b9c7e
kernel_swapusage/3cd09d95: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3cd09d95
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
root_disk_usage/429e7b9d does not have any dependencies adding test to queue
systemd_default_target/c81b9c7e does not have any dependencies adding test to queue
kernel_swapusage/3cd09d95 does not have any dependencies adding test to queue
     Builders Eligible to Run      
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                         ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ root_disk_usage/429e7b9d        │
│ systemd_default_target/c81b9c7e │
│ kernel_swapusage/3cd09d95       │
└─────────────────────────────────┘
root_disk_usage/429e7b9d: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/disk_usage/root_disk_usage/429e7b9d/stage
root_disk_usage/429e7b9d: Running Test via command: bash root_disk_usage_build.sh
root_disk_usage/429e7b9d: Test completed in 0.009745 seconds with returncode: 0
root_disk_usage/429e7b9d: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/disk_usage/root_disk_usage/429e7b9d/root_disk_usage.out
root_disk_usage/429e7b9d: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/disk_usage/root_disk_usage/429e7b9d/root_disk_usage.err
systemd_default_target/c81b9c7e: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/c81b9c7e/stage
systemd_default_target/c81b9c7e: Running Test via command: bash systemd_default_target_build.sh
systemd_default_target/c81b9c7e: failed to submit job with returncode: 1
────────────── Error Message for systemd_default_target/c81b9c7e ───────────────

systemd_default_target/c81b9c7e: Detected failure in running test, will attempt to retry test: 1 times
systemd_default_target/c81b9c7e: Run - 1/1
systemd_default_target/c81b9c7e: Running Test via command: bash systemd_default_target_build.sh
systemd_default_target/c81b9c7e: failed to submit job with returncode: 1
systemd_default_target/c81b9c7e: Test completed in 0.019889 seconds with returncode: 1
systemd_default_target/c81b9c7e: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/c81b9c7e/systemd_default_target.out
systemd_default_target/c81b9c7e: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/c81b9c7e/systemd_default_target.err
kernel_swapusage/3cd09d95: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3cd09d95/stage
kernel_swapusage/3cd09d95: Running Test via command: bash kernel_swapusage_build.sh
kernel_swapusage/3cd09d95: failed to submit job with returncode: 255
───────────────── Error Message for kernel_swapusage/3cd09d95 ──────────────────
sysctl: cannot stat /proc/sys/kernel/swapusage: No such file or directory

kernel_swapusage/3cd09d95: Detected failure in running test, will attempt to retry test: 1 times
kernel_swapusage/3cd09d95: Run - 1/1
kernel_swapusage/3cd09d95: Running Test via command: bash kernel_swapusage_build.sh
kernel_swapusage/3cd09d95: failed to submit job with returncode: 255
kernel_swapusage/3cd09d95: Test completed in 0.016403 seconds with returncode: 255
kernel_swapusage/3cd09d95: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3cd09d95/kernel_swapusage.out
kernel_swapusage/3cd09d95: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3cd09d95/kernel_swapusage.err
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ kernel_swapusage/3cd09d │ generic.local.bash │ FAIL   │ 255        │ 0.016   │
│ 95                      │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ root_disk_usage/429e7b9 │ generic.local.bash │ PASS   │ 0          │ 0.010   │
│ d                       │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ systemd_default_target/ │ generic.local.bash │ FAIL   │ 1          │ 0.020   │
│ c81b9c7e                │                    │        │            │         │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/3 Percentage: 33.333%
Failed Tests: 2/3 Percentage: 66.667%


Adding 3 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_oqhi82ms.log

Building By Tags (buildtest build --tags)

buildtest can perform builds by tags by using --tags or short option (-t). In order to use this feature, buildtest must load buildspecs in cache which can be run via buildtest buildspec find. If you are unsure of the available tags you can run buildtest buildspec find --tags or let buildtest tab-complete the available tags. For more details see Querying buildspec tags.

Let’s assume you want to build by tag name network, buildtest will attempt to find all tests that contain tags: ['network'] in the buildspec which is loaded in the buildcache cache. If a test matches the tag name, the test will be picked up during the discover process.

buildtest build -t network
$ buildtest build -t network
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:41                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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/tags_example.yml                                                   ║
╚══════════════════════════════════════════════════════════════════════════════╝
                           Buildspecs By Tag=network                            
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/tags_example.yml                                                   ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/tags_example.yml: VALID
Total builder objects created: 2
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃          ┃        ┃          ┃          ┃       ┃       ┃ descript ┃ buildsp ┃
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion      ┃ ecs     ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ string_t │ script │ generic. │ None     │ None  │ None  │ tags can │ /home/d │
│ ag/25df5 │        │ local.ba │          │       │       │ be a     │ ocs/che │
│ 7a1      │        │ sh       │          │       │       │ string   │ ckouts/ │
│          │        │          │          │       │       │          │ readthe │
│          │        │          │          │       │       │          │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/s │
│          │        │          │          │       │       │          │ table/t │
│          │        │          │          │       │       │          │ utorial │
│          │        │          │          │       │       │          │ s/tags_ │
│          │        │          │          │       │       │          │ example │
│          │        │          │          │       │       │          │ .yml    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ list_of_ │ script │ generic. │ None     │ None  │ None  │ tags can │ /home/d │
│ strings_ │        │ local.ba │          │       │       │ be a     │ ocs/che │
│ tags/ecb │        │ sh       │          │       │       │ list of  │ ckouts/ │
│ 44b4c    │        │          │          │       │       │ strings  │ readthe │
│          │        │          │          │       │       │          │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/s │
│          │        │          │          │       │       │          │ table/t │
│          │        │          │          │       │       │          │ utorial │
│          │        │          │          │       │       │          │ s/tags_ │
│          │        │          │          │       │       │          │ example │
│          │        │          │          │       │       │          │ .yml    │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
string_tag/25df57a1: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/string_tag/25df57a1
list_of_strings_tags/ecb44b4c: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/list_of_strings_tags/ecb44b4c
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
list_of_strings_tags/ecb44b4c does not have any dependencies adding test to queue
string_tag/25df57a1 does not have any dependencies adding test to queue
    Builders Eligible to Run     
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                       ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ list_of_strings_tags/ecb44b4c │
│ string_tag/25df57a1           │
└───────────────────────────────┘
list_of_strings_tags/ecb44b4c: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/list_of_strings_tags/ecb44b4c/stage
list_of_strings_tags/ecb44b4c: Running Test via command: bash list_of_strings_tags_build.sh
list_of_strings_tags/ecb44b4c: Test completed in 3.02845 seconds with returncode: 0
list_of_strings_tags/ecb44b4c: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/list_of_strings_tags/ecb44b4c/list_of_strings_tags.out
list_of_strings_tags/ecb44b4c: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/list_of_strings_tags/ecb44b4c/list_of_strings_tags.err
string_tag/25df57a1: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/string_tag/25df57a1/stage
string_tag/25df57a1: Running Test via command: bash string_tag_build.sh
string_tag/25df57a1: Test completed in 0.006733 seconds with returncode: 0
string_tag/25df57a1: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/string_tag/25df57a1/string_tag.out
string_tag/25df57a1: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/string_tag/25df57a1/string_tag.err
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ string_tag/25df57a1     │ generic.local.bash │ PASS   │ 0          │ 0.007   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ list_of_strings_tags/ec │ generic.local.bash │ PASS   │ 0          │ 3.028   │
│ b44b4c                  │                    │        │            │         │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 2/2 Percentage: 100.000%
Failed Tests: 0/2 Percentage: 0.000%


Adding 2 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_dbzn2uif.log

You can build by multiple tags by specifying --tags multiple times. In next example we build all tests with tag name pass and python.

buildtest build -t python -t pass
$ buildtest build -t python -t pass
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:45                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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                                                   ║
║ /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/pass_returncode.yml                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝
                            Buildspecs By Tag=python                            
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /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/python-hello.yml                                                   ║
╚══════════════════════════════════════════════════════════════════════════════╝
                             Buildspecs By Tag=pass                             
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝


Total Discovered Buildspecs:  3
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  3
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 3
Invalid Buildspecs: 0
/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/python-hello.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml: VALID
Total builder objects created: 6
                            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/9047 │        │ local.ba │          │       │       │ e circle │ ocs/che │
│ b6bc     │        │ 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    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ python_h │ script │ generic. │ None     │ None  │ None  │ Hello    │ /home/d │
│ ello/ee4 │        │ local.ba │          │       │       │ World    │ ocs/che │
│ 89bf6    │        │ sh       │          │       │       │ python   │ ckouts/ │
│          │        │          │          │       │       │          │ readthe │
│          │        │          │          │       │       │          │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/s │
│          │        │          │          │       │       │          │ table/t │
│          │        │          │          │       │       │          │ utorial │
│          │        │          │          │       │       │          │ s/pytho │
│          │        │          │          │       │       │          │ n-hello │
│          │        │          │          │       │       │          │ .yml    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_fa │ script │ generic. │ None     │ None  │ None  │ exit 1   │ /home/d │
│ il/97aad │        │ local.ba │          │       │       │ by       │ ocs/che │
│ 2b9      │        │ 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/9167a │        │ local.ba │          │       │       │ exit 1   │ ocs/che │
│ c0e      │        │ 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/ │
│ /c9a38d2 │        │          │          │       │       │ failed   │ readthe │
│ 6        │        │          │          │       │       │ 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/972 │        │ sh       │          │       │       │ returnco │ ckouts/ │
│ 33a17    │        │          │          │       │       │ 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 ─────────────────────────────────
circle_area/9047b6bc: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/9047b6bc
python_hello/ee489bf6: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/ee489bf6
exit1_fail/97aad2b9: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/97aad2b9
exit1_pass/9167ac0e: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/9167ac0e
returncode_list_mismatch/c9a38d26: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/c9a38d26
returncode_int_match/97233a17: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/97233a17
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
circle_area/9047b6bc does not have any dependencies adding test to queue
python_hello/ee489bf6 does not have any dependencies adding test to queue
exit1_fail/97aad2b9 does not have any dependencies adding test to queue
returncode_int_match/97233a17 does not have any dependencies adding test to queue
returncode_list_mismatch/c9a38d26 does not have any dependencies adding test to queue
exit1_pass/9167ac0e does not have any dependencies adding test to queue
      Builders Eligible to Run       
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ circle_area/9047b6bc              │
│ python_hello/ee489bf6             │
│ exit1_fail/97aad2b9               │
│ returncode_int_match/97233a17     │
│ returncode_list_mismatch/c9a38d26 │
│ exit1_pass/9167ac0e               │
└───────────────────────────────────┘
circle_area/9047b6bc: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/9047b6bc/stage
circle_area/9047b6bc: Running Test via command: bash circle_area_build.sh
circle_area/9047b6bc: Test completed in 0.031162 seconds with returncode: 0
circle_area/9047b6bc: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/9047b6bc/circle_area.out
circle_area/9047b6bc: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/9047b6bc/circle_area.err
python_hello/ee489bf6: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/ee489bf6/stage
python_hello/ee489bf6: Running Test via command: bash python_hello_build.sh
python_hello/ee489bf6: Test completed in 0.029986 seconds with returncode: 0
python_hello/ee489bf6: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/ee489bf6/python_hello.out
python_hello/ee489bf6: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/ee489bf6/python_hello.err
exit1_fail/97aad2b9: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/97aad2b9/stage
exit1_fail/97aad2b9: Running Test via command: bash exit1_fail_build.sh
exit1_fail/97aad2b9: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_fail/97aad2b9 ─────────────────────

exit1_fail/97aad2b9: Detected failure in running test, will attempt to retry test: 1 times
exit1_fail/97aad2b9: Run - 1/1
exit1_fail/97aad2b9: Running Test via command: bash exit1_fail_build.sh
exit1_fail/97aad2b9: failed to submit job with returncode: 1
exit1_fail/97aad2b9: Test completed in 0.014328 seconds with returncode: 1
exit1_fail/97aad2b9: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/97aad2b9/exit1_fail.out
exit1_fail/97aad2b9: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/97aad2b9/exit1_fail.err
returncode_int_match/97233a17: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/97233a17/stage
returncode_int_match/97233a17: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/97233a17: failed to submit job with returncode: 128
─────────────── Error Message for returncode_int_match/97233a17 ────────────────

returncode_int_match/97233a17: Detected failure in running test, will attempt to retry test: 1 times
returncode_int_match/97233a17: Run - 1/1
returncode_int_match/97233a17: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/97233a17: failed to submit job with returncode: 128
returncode_int_match/97233a17: Test completed in 0.014162 seconds with returncode: 128
returncode_int_match/97233a17: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/97233a17/returncode_int_match.out
returncode_int_match/97233a17: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/97233a17/returncode_int_match.err
returncode_int_match/97233a17: Checking returncode - 128 is matched in list [128]
returncode_list_mismatch/c9a38d26: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/c9a38d26/stage
returncode_list_mismatch/c9a38d26: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/c9a38d26: failed to submit job with returncode: 2
───────────── Error Message for returncode_list_mismatch/c9a38d26 ──────────────

returncode_list_mismatch/c9a38d26: Detected failure in running test, will attempt to retry test: 1 times
returncode_list_mismatch/c9a38d26: Run - 1/1
returncode_list_mismatch/c9a38d26: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/c9a38d26: failed to submit job with returncode: 2
returncode_list_mismatch/c9a38d26: Test completed in 0.01435 seconds with returncode: 2
returncode_list_mismatch/c9a38d26: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/c9a38d26/returncode_list_mismatch.out
returncode_list_mismatch/c9a38d26: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/c9a38d26/returncode_list_mismatch.err
returncode_list_mismatch/c9a38d26: Checking returncode - 2 is matched in list [1, 3]
exit1_pass/9167ac0e: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/9167ac0e/stage
exit1_pass/9167ac0e: Running Test via command: bash exit1_pass_build.sh
exit1_pass/9167ac0e: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_pass/9167ac0e ─────────────────────

exit1_pass/9167ac0e: Detected failure in running test, will attempt to retry test: 1 times
exit1_pass/9167ac0e: Run - 1/1
exit1_pass/9167ac0e: Running Test via command: bash exit1_pass_build.sh
exit1_pass/9167ac0e: failed to submit job with returncode: 1
exit1_pass/9167ac0e: Test completed in 0.014208 seconds with returncode: 1
exit1_pass/9167ac0e: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/9167ac0e/exit1_pass.out
exit1_pass/9167ac0e: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/9167ac0e/exit1_pass.err
exit1_pass/9167ac0e: Checking returncode - 1 is matched in list [1]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ exit1_fail/97aad2b9     │ generic.local.bash │ FAIL   │ 1          │ 0.014   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ python_hello/ee489bf6   │ generic.local.bash │ PASS   │ 0          │ 0.030   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_int_match/97 │ generic.local.bash │ PASS   │ 128        │ 0.014   │
│ 233a17                  │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ circle_area/9047b6bc    │ generic.local.bash │ PASS   │ 0          │ 0.031   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_list_mismatc │ generic.local.bash │ FAIL   │ 2          │ 0.014   │
│ h/c9a38d26              │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_pass/9167ac0e     │ generic.local.bash │ PASS   │ 1          │ 0.014   │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 4/6 Percentage: 66.667%
Failed Tests: 2/6 Percentage: 33.333%


Adding 6 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_opkrvmr6.log

When multiple tags are specified, we search each tag independently and if it’s found in the buildspec cache we retrieve the buildspec file and add file to queue. This queue is a list of buildspecs that buildtest will process (i.e parse, build, run). You can query tags from buildspecs cache to see all available tags by running buildtest buildspec find --tags.

Note

The --tags is used for discovering buildspec file and not filtering tests by tag.

You can specify multiple tag names as a comma separated list. In the example below we build all tests with tag names pass, fail and network.

buildtest build -t pass,fail -t network
$ buildtest build -t pass,fail -t network
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:46                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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/tags_example.yml                                                   ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝
                             Buildspecs By Tag=pass                             
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝
                             Buildspecs By Tag=fail                             
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝
                           Buildspecs By Tag=network                            
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/tags_example.yml                                                   ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/tags_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml: VALID
Total builder objects created: 6
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃          ┃        ┃          ┃          ┃       ┃       ┃ descript ┃ buildsp ┃
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion      ┃ ecs     ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ string_t │ script │ generic. │ None     │ None  │ None  │ tags can │ /home/d │
│ ag/97c15 │        │ local.ba │          │       │       │ be a     │ ocs/che │
│ e09      │        │ sh       │          │       │       │ string   │ ckouts/ │
│          │        │          │          │       │       │          │ readthe │
│          │        │          │          │       │       │          │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/s │
│          │        │          │          │       │       │          │ table/t │
│          │        │          │          │       │       │          │ utorial │
│          │        │          │          │       │       │          │ s/tags_ │
│          │        │          │          │       │       │          │ example │
│          │        │          │          │       │       │          │ .yml    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ list_of_ │ script │ generic. │ None     │ None  │ None  │ tags can │ /home/d │
│ strings_ │        │ local.ba │          │       │       │ be a     │ ocs/che │
│ tags/2bc │        │ sh       │          │       │       │ list of  │ ckouts/ │
│ fa575    │        │          │          │       │       │ strings  │ readthe │
│          │        │          │          │       │       │          │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/s │
│          │        │          │          │       │       │          │ table/t │
│          │        │          │          │       │       │          │ utorial │
│          │        │          │          │       │       │          │ s/tags_ │
│          │        │          │          │       │       │          │ example │
│          │        │          │          │       │       │          │ .yml    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_fa │ script │ generic. │ None     │ None  │ None  │ exit 1   │ /home/d │
│ il/f0f90 │        │ local.ba │          │       │       │ by       │ ocs/che │
│ e72      │        │ 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/72516 │        │ local.ba │          │       │       │ exit 1   │ ocs/che │
│ f5e      │        │ 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/ │
│ /4b8846a │        │          │          │       │       │ failed   │ readthe │
│ 2        │        │          │          │       │       │ 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/c23 │        │ sh       │          │       │       │ returnco │ ckouts/ │
│ 115dd    │        │          │          │       │       │ 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 ─────────────────────────────────
string_tag/97c15e09: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/string_tag/97c15e09
list_of_strings_tags/2bcfa575: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/list_of_strings_tags/2bcfa575
exit1_fail/f0f90e72: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/f0f90e72
exit1_pass/72516f5e: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/72516f5e
returncode_list_mismatch/4b8846a2: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/4b8846a2
returncode_int_match/c23115dd: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/c23115dd
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
list_of_strings_tags/2bcfa575 does not have any dependencies adding test to queue
exit1_pass/72516f5e does not have any dependencies adding test to queue
string_tag/97c15e09 does not have any dependencies adding test to queue
exit1_fail/f0f90e72 does not have any dependencies adding test to queue
returncode_list_mismatch/4b8846a2 does not have any dependencies adding test to queue
returncode_int_match/c23115dd does not have any dependencies adding test to queue
      Builders Eligible to Run       
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ list_of_strings_tags/2bcfa575     │
│ exit1_pass/72516f5e               │
│ string_tag/97c15e09               │
│ exit1_fail/f0f90e72               │
│ returncode_list_mismatch/4b8846a2 │
│ returncode_int_match/c23115dd     │
└───────────────────────────────────┘
list_of_strings_tags/2bcfa575: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/list_of_strings_tags/2bcfa575/stage
list_of_strings_tags/2bcfa575: Running Test via command: bash list_of_strings_tags_build.sh
list_of_strings_tags/2bcfa575: Test completed in 3.029954 seconds with returncode: 0
list_of_strings_tags/2bcfa575: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/list_of_strings_tags/2bcfa575/list_of_strings_tags.out
list_of_strings_tags/2bcfa575: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/list_of_strings_tags/2bcfa575/list_of_strings_tags.err
exit1_pass/72516f5e: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/72516f5e/stage
exit1_pass/72516f5e: Running Test via command: bash exit1_pass_build.sh
exit1_pass/72516f5e: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_pass/72516f5e ─────────────────────

exit1_pass/72516f5e: Detected failure in running test, will attempt to retry test: 1 times
exit1_pass/72516f5e: Run - 1/1
exit1_pass/72516f5e: Running Test via command: bash exit1_pass_build.sh
exit1_pass/72516f5e: failed to submit job with returncode: 1
exit1_pass/72516f5e: Test completed in 0.014722 seconds with returncode: 1
exit1_pass/72516f5e: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/72516f5e/exit1_pass.out
exit1_pass/72516f5e: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/72516f5e/exit1_pass.err
exit1_pass/72516f5e: Checking returncode - 1 is matched in list [1]
string_tag/97c15e09: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/string_tag/97c15e09/stage
string_tag/97c15e09: Running Test via command: bash string_tag_build.sh
string_tag/97c15e09: Test completed in 0.006118 seconds with returncode: 0
string_tag/97c15e09: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/string_tag/97c15e09/string_tag.out
string_tag/97c15e09: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/string_tag/97c15e09/string_tag.err
exit1_fail/f0f90e72: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/f0f90e72/stage
exit1_fail/f0f90e72: Running Test via command: bash exit1_fail_build.sh
exit1_fail/f0f90e72: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_fail/f0f90e72 ─────────────────────

exit1_fail/f0f90e72: Detected failure in running test, will attempt to retry test: 1 times
exit1_fail/f0f90e72: Run - 1/1
exit1_fail/f0f90e72: Running Test via command: bash exit1_fail_build.sh
exit1_fail/f0f90e72: failed to submit job with returncode: 1
exit1_fail/f0f90e72: Test completed in 0.014044 seconds with returncode: 1
exit1_fail/f0f90e72: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/f0f90e72/exit1_fail.out
exit1_fail/f0f90e72: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/f0f90e72/exit1_fail.err
returncode_list_mismatch/4b8846a2: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/4b8846a2/stage
returncode_list_mismatch/4b8846a2: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/4b8846a2: failed to submit job with returncode: 2
───────────── Error Message for returncode_list_mismatch/4b8846a2 ──────────────

returncode_list_mismatch/4b8846a2: Detected failure in running test, will attempt to retry test: 1 times
returncode_list_mismatch/4b8846a2: Run - 1/1
returncode_list_mismatch/4b8846a2: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/4b8846a2: failed to submit job with returncode: 2
returncode_list_mismatch/4b8846a2: Test completed in 0.014249 seconds with returncode: 2
returncode_list_mismatch/4b8846a2: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/4b8846a2/returncode_list_mismatch.out
returncode_list_mismatch/4b8846a2: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/4b8846a2/returncode_list_mismatch.err
returncode_list_mismatch/4b8846a2: Checking returncode - 2 is matched in list [1, 3]
returncode_int_match/c23115dd: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/c23115dd/stage
returncode_int_match/c23115dd: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/c23115dd: failed to submit job with returncode: 128
─────────────── Error Message for returncode_int_match/c23115dd ────────────────

returncode_int_match/c23115dd: Detected failure in running test, will attempt to retry test: 1 times
returncode_int_match/c23115dd: Run - 1/1
returncode_int_match/c23115dd: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/c23115dd: failed to submit job with returncode: 128
returncode_int_match/c23115dd: Test completed in 0.014254 seconds with returncode: 128
returncode_int_match/c23115dd: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/c23115dd/returncode_int_match.out
returncode_int_match/c23115dd: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/c23115dd/returncode_int_match.err
returncode_int_match/c23115dd: Checking returncode - 128 is matched in list [128]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ string_tag/97c15e09     │ generic.local.bash │ PASS   │ 0          │ 0.006   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_list_mismatc │ generic.local.bash │ FAIL   │ 2          │ 0.014   │
│ h/4b8846a2              │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_pass/72516f5e     │ generic.local.bash │ PASS   │ 1          │ 0.015   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_fail/f0f90e72     │ generic.local.bash │ FAIL   │ 1          │ 0.014   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ list_of_strings_tags/2b │ generic.local.bash │ PASS   │ 0          │ 3.030   │
│ cfa575                  │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_int_match/c2 │ generic.local.bash │ PASS   │ 128        │ 0.014   │
│ 3115dd                  │                    │        │            │         │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 4/6 Percentage: 66.667%
Failed Tests: 2/6 Percentage: 33.333%


Adding 6 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_o9wamcwx.log

You can combine --tags with --buildspec to discover buildspecs in a single command. buildtest will query tags and buildspecs independently and combine all discovered buildspecs together.

buildtest build --tags pass --buildspec tutorials/python-hello.yml
$ buildtest build --tags pass --buildspec tutorials/python-hello.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:50                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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                                    ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/python-hello.yml                                                   ║
╚══════════════════════════════════════════════════════════════════════════════╝
                             Buildspecs By Tag=pass                             
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/test_status/pass_returncode.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/python-hello.yml: VALID
Total builder objects created: 5
                            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/85ea0 │        │ local.ba │          │       │       │ by       │ ocs/che │
│ 5ea      │        │ 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/1a292 │        │ local.ba │          │       │       │ exit 1   │ ocs/che │
│ a6a      │        │ 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/ │
│ /f5327c7 │        │          │          │       │       │ failed   │ readthe │
│ d        │        │          │          │       │       │ 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/fd9 │        │ sh       │          │       │       │ returnco │ ckouts/ │
│ 0fa34    │        │          │          │       │       │ de 128   │ readthe │
│          │        │          │          │       │       │          │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/s │
│          │        │          │          │       │       │          │ table/t │
│          │        │          │          │       │       │          │ utorial │
│          │        │          │          │       │       │          │ s/test_ │
│          │        │          │          │       │       │          │ status/ │
│          │        │          │          │       │       │          │ pass_re │
│          │        │          │          │       │       │          │ turncod │
│          │        │          │          │       │       │          │ e.yml   │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ python_h │ script │ generic. │ None     │ None  │ None  │ Hello    │ /home/d │
│ ello/e37 │        │ local.ba │          │       │       │ World    │ ocs/che │
│ 5ae0b    │        │ sh       │          │       │       │ python   │ ckouts/ │
│          │        │          │          │       │       │          │ readthe │
│          │        │          │          │       │       │          │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/s │
│          │        │          │          │       │       │          │ table/t │
│          │        │          │          │       │       │          │ utorial │
│          │        │          │          │       │       │          │ s/pytho │
│          │        │          │          │       │       │          │ n-hello │
│          │        │          │          │       │       │          │ .yml    │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
exit1_fail/85ea05ea: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/85ea05ea
exit1_pass/1a292a6a: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/1a292a6a
returncode_list_mismatch/f5327c7d: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/f5327c7d
returncode_int_match/fd90fa34: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/fd90fa34
python_hello/e375ae0b: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/e375ae0b
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
python_hello/e375ae0b does not have any dependencies adding test to queue
returncode_list_mismatch/f5327c7d does not have any dependencies adding test to queue
exit1_pass/1a292a6a does not have any dependencies adding test to queue
returncode_int_match/fd90fa34 does not have any dependencies adding test to queue
exit1_fail/85ea05ea does not have any dependencies adding test to queue
      Builders Eligible to Run       
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ python_hello/e375ae0b             │
│ returncode_list_mismatch/f5327c7d │
│ exit1_pass/1a292a6a               │
│ returncode_int_match/fd90fa34     │
│ exit1_fail/85ea05ea               │
└───────────────────────────────────┘
python_hello/e375ae0b: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/e375ae0b/stage
python_hello/e375ae0b: Running Test via command: bash python_hello_build.sh
python_hello/e375ae0b: Test completed in 0.030911 seconds with returncode: 0
python_hello/e375ae0b: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/e375ae0b/python_hello.out
python_hello/e375ae0b: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/e375ae0b/python_hello.err
returncode_list_mismatch/f5327c7d: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/f5327c7d/stage
returncode_list_mismatch/f5327c7d: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/f5327c7d: failed to submit job with returncode: 2
───────────── Error Message for returncode_list_mismatch/f5327c7d ──────────────

returncode_list_mismatch/f5327c7d: Detected failure in running test, will attempt to retry test: 1 times
returncode_list_mismatch/f5327c7d: Run - 1/1
returncode_list_mismatch/f5327c7d: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/f5327c7d: failed to submit job with returncode: 2
returncode_list_mismatch/f5327c7d: Test completed in 0.014471 seconds with returncode: 2
returncode_list_mismatch/f5327c7d: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/f5327c7d/returncode_list_mismatch.out
returncode_list_mismatch/f5327c7d: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/f5327c7d/returncode_list_mismatch.err
returncode_list_mismatch/f5327c7d: Checking returncode - 2 is matched in list [1, 3]
exit1_pass/1a292a6a: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/1a292a6a/stage
exit1_pass/1a292a6a: Running Test via command: bash exit1_pass_build.sh
exit1_pass/1a292a6a: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_pass/1a292a6a ─────────────────────

exit1_pass/1a292a6a: Detected failure in running test, will attempt to retry test: 1 times
exit1_pass/1a292a6a: Run - 1/1
exit1_pass/1a292a6a: Running Test via command: bash exit1_pass_build.sh
exit1_pass/1a292a6a: failed to submit job with returncode: 1
exit1_pass/1a292a6a: Test completed in 0.014281 seconds with returncode: 1
exit1_pass/1a292a6a: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/1a292a6a/exit1_pass.out
exit1_pass/1a292a6a: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/1a292a6a/exit1_pass.err
exit1_pass/1a292a6a: Checking returncode - 1 is matched in list [1]
returncode_int_match/fd90fa34: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/fd90fa34/stage
returncode_int_match/fd90fa34: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/fd90fa34: failed to submit job with returncode: 128
─────────────── Error Message for returncode_int_match/fd90fa34 ────────────────

returncode_int_match/fd90fa34: Detected failure in running test, will attempt to retry test: 1 times
returncode_int_match/fd90fa34: Run - 1/1
returncode_int_match/fd90fa34: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/fd90fa34: failed to submit job with returncode: 128
returncode_int_match/fd90fa34: Test completed in 0.014321 seconds with returncode: 128
returncode_int_match/fd90fa34: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/fd90fa34/returncode_int_match.out
returncode_int_match/fd90fa34: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/fd90fa34/returncode_int_match.err
returncode_int_match/fd90fa34: Checking returncode - 128 is matched in list [128]
exit1_fail/85ea05ea: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/85ea05ea/stage
exit1_fail/85ea05ea: Running Test via command: bash exit1_fail_build.sh
exit1_fail/85ea05ea: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_fail/85ea05ea ─────────────────────

exit1_fail/85ea05ea: Detected failure in running test, will attempt to retry test: 1 times
exit1_fail/85ea05ea: Run - 1/1
exit1_fail/85ea05ea: Running Test via command: bash exit1_fail_build.sh
exit1_fail/85ea05ea: failed to submit job with returncode: 1
exit1_fail/85ea05ea: Test completed in 0.014086 seconds with returncode: 1
exit1_fail/85ea05ea: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/85ea05ea/exit1_fail.out
exit1_fail/85ea05ea: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/85ea05ea/exit1_fail.err
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ exit1_fail/85ea05ea     │ generic.local.bash │ FAIL   │ 1          │ 0.014   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_pass/1a292a6a     │ generic.local.bash │ PASS   │ 1          │ 0.014   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_list_mismatc │ generic.local.bash │ FAIL   │ 2          │ 0.014   │
│ h/f5327c7d              │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ python_hello/e375ae0b   │ generic.local.bash │ PASS   │ 0          │ 0.031   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_int_match/fd │ generic.local.bash │ PASS   │ 128        │ 0.014   │
│ 90fa34                  │                    │        │            │         │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 3/5 Percentage: 60.000%
Failed Tests: 2/5 Percentage: 40.000%


Adding 5 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_rv11jdq8.log

As you may see, there are several ways to build buildspecs with buildtest. Tags is great way to build a whole collection of tests if you don’t know path to all the files. You can specify multiple tags per buildspecs to classify how test can be run.

Exclude by tags (buildtest build --exclude-tags)

You can exclude tests by tagname using --exclude-tags option or short option (-xt). Any tests that contains the tags field is searched with list of excluded tags. If there is a match, the test is skipped. If the test does not contain tags key, the test will be included to run.

Let’s take an example buildspec file which contains 4 tests.

buildspecs:

  exit1_fail:
    executor: generic.local.bash
    type: script
    description: exit 1 by default is FAIL
    tags: [tutorials, fail]
    run: exit 1

  exit1_pass:
    executor: generic.local.bash
    type: script
    description: report exit 1 as PASS
    run: exit 1
    tags: [tutorials, pass]
    status:
      returncode: [1]

  returncode_list_mismatch:
    executor: generic.local.bash
    type: script
    description: exit 2 failed since it failed to match returncode 1
    run: exit 2
    tags: [tutorials, fail]
    status:
      returncode: [1, 3]

  returncode_int_match:
    executor: generic.local.bash
    type: script
    description: exit 128 matches returncode 128
    run: exit 128
    tags: [tutorials, pass]
    status:
      returncode: 128

We will demonstrate this feature, by excluding tests with tag name pass. Take note all tests are run except for those that include pass.

buildtest build -b tutorials/test_status/pass_returncode.yml -xt pass
$ buildtest build -b tutorials/test_status/pass_returncode.yml -xt pass
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:51                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 Discovered Buildspecs:  1
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Skipping test: exit1_pass from buildspec: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml due to tag exclusion: ['pass']
Skipping test: returncode_int_match from buildspec: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml due to tag exclusion: ['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_fa │ script │ generic. │ None     │ None  │ None  │ exit 1   │ /home/d │
│ il/d30ac │        │ local.ba │          │       │       │ by       │ ocs/che │
│ 0cc      │        │ 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   │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnco │ script │ generic. │ None     │ None  │ None  │ exit 2   │ /home/d │
│ de_list_ │        │ local.ba │          │       │       │ failed   │ ocs/che │
│ mismatch │        │ sh       │          │       │       │ since it │ ckouts/ │
│ /ee6d33c │        │          │          │       │       │ failed   │ readthe │
│ 8        │        │          │          │       │       │ 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   │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
exit1_fail/d30ac0cc: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/d30ac0cc
returncode_list_mismatch/ee6d33c8: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/ee6d33c8
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
returncode_list_mismatch/ee6d33c8 does not have any dependencies adding test to queue
exit1_fail/d30ac0cc does not have any dependencies adding test to queue
      Builders Eligible to Run       
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ returncode_list_mismatch/ee6d33c8 │
│ exit1_fail/d30ac0cc               │
└───────────────────────────────────┘
returncode_list_mismatch/ee6d33c8: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/ee6d33c8/stage
returncode_list_mismatch/ee6d33c8: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/ee6d33c8: failed to submit job with returncode: 2
───────────── Error Message for returncode_list_mismatch/ee6d33c8 ──────────────

returncode_list_mismatch/ee6d33c8: Detected failure in running test, will attempt to retry test: 1 times
returncode_list_mismatch/ee6d33c8: Run - 1/1
returncode_list_mismatch/ee6d33c8: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/ee6d33c8: failed to submit job with returncode: 2
returncode_list_mismatch/ee6d33c8: Test completed in 0.014902 seconds with returncode: 2
returncode_list_mismatch/ee6d33c8: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/ee6d33c8/returncode_list_mismatch.out
returncode_list_mismatch/ee6d33c8: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/ee6d33c8/returncode_list_mismatch.err
returncode_list_mismatch/ee6d33c8: Checking returncode - 2 is matched in list [1, 3]
exit1_fail/d30ac0cc: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/d30ac0cc/stage
exit1_fail/d30ac0cc: Running Test via command: bash exit1_fail_build.sh
exit1_fail/d30ac0cc: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_fail/d30ac0cc ─────────────────────

exit1_fail/d30ac0cc: Detected failure in running test, will attempt to retry test: 1 times
exit1_fail/d30ac0cc: Run - 1/1
exit1_fail/d30ac0cc: Running Test via command: bash exit1_fail_build.sh
exit1_fail/d30ac0cc: failed to submit job with returncode: 1
exit1_fail/d30ac0cc: Test completed in 0.013955 seconds with returncode: 1
exit1_fail/d30ac0cc: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/d30ac0cc/exit1_fail.out
exit1_fail/d30ac0cc: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/d30ac0cc/exit1_fail.err
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ returncode_list_mismatc │ generic.local.bash │ FAIL   │ 2          │ 0.015   │
│ h/ee6d33c8              │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_fail/d30ac0cc     │ generic.local.bash │ FAIL   │ 1          │ 0.014   │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 0/2 Percentage: 0.000%
Failed Tests: 2/2 Percentage: 100.000%


Adding 2 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_usaxpb0o.log

We can specify tags as a comma separated list to specify multiple tags so one can do -xt tag1,tag2 which is equivalent to -xt tag1 -xt tag2. You may even mix the two formats together where you can exclude tags: tag1, tag2, tag3 by running -xt tag1 -xt tag2,tag3.

In this example below, we will exclude both pass and fail tags which results in error message where no test are eligible to run after exclusion has been applied.

buildtest build -b tutorials/test_status/pass_returncode.yml -xt pass,fail
$ buildtest build -b tutorials/test_status/pass_returncode.yml -xt pass,fail
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:51                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 Discovered Buildspecs:  1
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Skipping test: exit1_fail from buildspec: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml due to tag exclusion: ['pass', 'fail']
Skipping test: exit1_pass from buildspec: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml due to tag exclusion: ['pass', 'fail']
Skipping test: returncode_list_mismatch from buildspec: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml due to tag exclusion: ['pass', 'fail']
Skipping test: returncode_int_match from buildspec: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.yml due to tag exclusion: ['pass', 'fail']
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/test_status/pass_returncode.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/tmpjcb9dx2w/var/buildtest.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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:52                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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                                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝
                         Buildspecs by Name=hello_world                         
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspecs                                                                   ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/hello_world.yml                                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/3c38 │        │ local.ba │          │       │       │ world    │ ocs/che │
│ bc63     │        │ 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/3c38bc63: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/3c38bc63
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
hello_world/3c38bc63 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder              ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ hello_world/3c38bc63 │
└──────────────────────┘
hello_world/3c38bc63: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/3c38bc63/stage
hello_world/3c38bc63: Running Test via command: bash hello_world_build.sh
hello_world/3c38bc63: Test completed in 0.006236 seconds with returncode: 0
hello_world/3c38bc63: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/3c38bc63/hello_world.out
hello_world/3c38bc63: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/3c38bc63/hello_world.err
                                Test Summary                                 
┏━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder              ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ hello_world/3c38bc63 │ generic.local.bash │ PASS   │ 0          │ 0.006   │
└──────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%


Adding 1 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_umr4lynk.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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:53                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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/add_numbers.yml                                                    ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/summary_example.yml                                                ║
╚══════════════════════════════════════════════════════════════════════════════╝
                         Buildspecs by Name=add_numbers                         
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspecs                                                                   ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/add_numbers.yml                                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝
                       Buildspecs by Name=summary_example                       
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspecs                                                                   ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/summary_example.yml                                                ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/add_numbers.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/summary_example.yml: VALID
Total builder objects created: 2
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃          ┃        ┃          ┃          ┃       ┃       ┃ descript ┃ buildsp ┃
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion      ┃ ecs     ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ add_numb │ script │ generic. │ None     │ None  │ None  │ Add X+Y  │ /home/d │
│ ers/3740 │        │ local.ba │          │       │       │          │ ocs/che │
│ 1ea2     │        │ sh       │          │       │       │          │ ckouts/ │
│          │        │          │          │       │       │          │ readthe │
│          │        │          │          │       │       │          │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/s │
│          │        │          │          │       │       │          │ table/t │
│          │        │          │          │       │       │          │ utorial │
│          │        │          │          │       │       │          │ s/add_n │
│          │        │          │          │       │       │          │ umbers. │
│          │        │          │          │       │       │          │ yml     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ summary_ │ script │ generic. │ None     │ None  │ None  │ The      │ /home/d │
│ example/ │        │ local.ba │          │       │       │ summary  │ ocs/che │
│ f26b6fb4 │        │ 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 │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
add_numbers/37401ea2: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/add_numbers/add_numbers/37401ea2
summary_example/f26b6fb4: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/summary_example/summary_example/f26b6fb4
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
summary_example/f26b6fb4 does not have any dependencies adding test to queue
add_numbers/37401ea2 does not have any dependencies adding test to queue
  Builders Eligible to Run  
┏━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                  ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ summary_example/f26b6fb4 │
│ add_numbers/37401ea2     │
└──────────────────────────┘
summary_example/f26b6fb4: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/summary_example/summary_example/f26b6fb4/stage
summary_example/f26b6fb4: Running Test via command: bash summary_example_build.sh
summary_example/f26b6fb4: Test completed in 0.006646 seconds with returncode: 0
summary_example/f26b6fb4: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/summary_example/summary_example/f26b6fb4/summary_example.out
summary_example/f26b6fb4: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/summary_example/summary_example/f26b6fb4/summary_example.err
add_numbers/37401ea2: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/add_numbers/add_numbers/37401ea2/stage
add_numbers/37401ea2: Running Test via command: bash add_numbers_build.sh
add_numbers/37401ea2: Test completed in 0.005618 seconds with returncode: 0
add_numbers/37401ea2: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/add_numbers/add_numbers/37401ea2/add_numbers.out
add_numbers/37401ea2: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/add_numbers/add_numbers/37401ea2/add_numbers.err
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ add_numbers/37401ea2    │ generic.local.bash │ PASS   │ 0          │ 0.006   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ summary_example/f26b6fb │ generic.local.bash │ PASS   │ 0          │ 0.007   │
│ 4                       │                    │        │            │         │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 2/2 Percentage: 100.000%
Failed Tests: 0/2 Percentage: 0.000%


Adding 2 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_br0mzal4.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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:53                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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/csh_shell_examples.yml                                             ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/environment.yml                                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝
                    Buildspecs by Executor=generic.local.csh                    
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspecs                                                                   ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /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/environment.yml                                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/csh_shell_examples.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/environment.yml: VALID
Total builder objects created: 4
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃          ┃        ┃          ┃          ┃       ┃       ┃ descript ┃ buildsp ┃
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ ion      ┃ ecs     ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ csh_shel │ script │ generic. │ None     │ None  │ None  │ csh      │ /home/d │
│ l/ff9b38 │        │ local.cs │          │       │       │ shell    │ ocs/che │
│ 39       │        │ h        │          │       │       │ example  │ ckouts/ │
│          │        │          │          │       │       │          │ readthe │
│          │        │          │          │       │       │          │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/s │
│          │        │          │          │       │       │          │ table/t │
│          │        │          │          │       │       │          │ utorial │
│          │        │          │          │       │       │          │ s/csh_s │
│          │        │          │          │       │       │          │ hell_ex │
│          │        │          │          │       │       │          │ amples. │
│          │        │          │          │       │       │          │ yml     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ bash_env │ script │ generic. │ None     │ None  │ None  │ Declare  │ /home/d │
│ _variabl │        │ local.ba │          │       │       │ environm │ ocs/che │
│ es/5ddea │        │ sh       │          │       │       │ ent      │ ckouts/ │
│ d9b      │        │          │          │       │       │ 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/d53a │        │ h        │          │       │       │ example  │ ckouts/ │
│ b280     │        │          │          │       │       │ 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/e84 │        │ h        │          │       │       │ example  │ ckouts/ │
│ a3941    │        │          │          │       │       │ to       │ readthe │
│          │        │          │          │       │       │ declare  │ docs.or │
│          │        │          │          │       │       │ environm │ g/user_ │
│          │        │          │          │       │       │ ent      │ builds/ │
│          │        │          │          │       │       │ variable │ buildte │
│          │        │          │          │       │       │ s        │ st/chec │
│          │        │          │          │       │       │          │ kouts/s │
│          │        │          │          │       │       │          │ table/t │
│          │        │          │          │       │       │          │ utorial │
│          │        │          │          │       │       │          │ s/envir │
│          │        │          │          │       │       │          │ onment. │
│          │        │          │          │       │       │          │ yml     │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
csh_shell/ff9b3839: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/csh_shell_examples/csh_shell/ff9b3839
bash_env_variables/5ddead9b: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/environment/bash_env_variables/5ddead9b
csh_env_declaration/d53ab280: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/environment/csh_env_declaration/d53ab280
tcsh_env_declaration/e84a3941: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/environment/tcsh_env_declaration/e84a3941
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
csh_shell/ff9b3839 does not have any dependencies adding test to queue
tcsh_env_declaration/e84a3941 does not have any dependencies adding test to queue
bash_env_variables/5ddead9b does not have any dependencies adding test to queue
csh_env_declaration/d53ab280 does not have any dependencies adding test to queue
    Builders Eligible to Run     
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                       ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ csh_shell/ff9b3839            │
│ tcsh_env_declaration/e84a3941 │
│ bash_env_variables/5ddead9b   │
│ csh_env_declaration/d53ab280  │
└───────────────────────────────┘
csh_shell/ff9b3839: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/csh_shell_examples/csh_shell/ff9b3839/stage
csh_shell/ff9b3839: Running Test via command: bash csh_shell_build.sh
csh_shell/ff9b3839: Test completed in 2.173781 seconds with returncode: 0
csh_shell/ff9b3839: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/csh_shell_examples/csh_shell/ff9b3839/csh_shell.out
csh_shell/ff9b3839: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/csh_shell_examples/csh_shell/ff9b3839/csh_shell.err
tcsh_env_declaration/e84a3941: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/environment/tcsh_env_declaration/e84a3941/stage
tcsh_env_declaration/e84a3941: Running Test via command: bash tcsh_env_declaration_build.sh
tcsh_env_declaration/e84a3941: Test completed in 0.013762 seconds with returncode: 0
tcsh_env_declaration/e84a3941: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/environment/tcsh_env_declaration/e84a3941/tcsh_env_declaration.out
tcsh_env_declaration/e84a3941: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/environment/tcsh_env_declaration/e84a3941/tcsh_env_declaration.err
bash_env_variables/5ddead9b: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/environment/bash_env_variables/5ddead9b/stage
bash_env_variables/5ddead9b: Running Test via command: bash bash_env_variables_build.sh
bash_env_variables/5ddead9b: Test completed in 0.007427 seconds with returncode: 0
bash_env_variables/5ddead9b: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/environment/bash_env_variables/5ddead9b/bash_env_variables.out
bash_env_variables/5ddead9b: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/environment/bash_env_variables/5ddead9b/bash_env_variables.err
csh_env_declaration/d53ab280: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/environment/csh_env_declaration/d53ab280/stage
csh_env_declaration/d53ab280: Running Test via command: bash csh_env_declaration_build.sh
csh_env_declaration/d53ab280: Test completed in 2.170943 seconds with returncode: 0
csh_env_declaration/d53ab280: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/environment/csh_env_declaration/d53ab280/csh_env_declaration.out
csh_env_declaration/d53ab280: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/environment/csh_env_declaration/d53ab280/csh_env_declaration.err
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ tcsh_env_declaration/e8 │ generic.local.csh  │ PASS   │ 0          │ 0.014   │
│ 4a3941                  │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ csh_env_declaration/d53 │ generic.local.csh  │ PASS   │ 0          │ 2.171   │
│ ab280                   │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ csh_shell/ff9b3839      │ generic.local.csh  │ PASS   │ 0          │ 2.174   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ bash_env_variables/5dde │ generic.local.bash │ PASS   │ 0          │ 0.007   │
│ ad9b                    │                    │        │            │         │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 4/4 Percentage: 100.000%
Failed Tests: 0/4 Percentage: 0.000%


Adding 4 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_4dmrjwj8.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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:59                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝
                             Buildspecs By Tag=pass                             
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/fca13 │        │ local.ba │          │       │       │ exit 1   │ ocs/che │
│ cf8      │        │ 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/7ff │        │ sh       │          │       │       │ returnco │ ckouts/ │
│ 997f0    │        │          │          │       │       │ 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/fca13cf8: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/fca13cf8
returncode_int_match/7ff997f0: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/7ff997f0
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
returncode_int_match/7ff997f0 does not have any dependencies adding test to queue
exit1_pass/fca13cf8 does not have any dependencies adding test to queue
    Builders Eligible to Run     
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                       ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ returncode_int_match/7ff997f0 │
│ exit1_pass/fca13cf8           │
└───────────────────────────────┘
returncode_int_match/7ff997f0: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/7ff997f0/stage
returncode_int_match/7ff997f0: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/7ff997f0: failed to submit job with returncode: 128
─────────────── Error Message for returncode_int_match/7ff997f0 ────────────────

returncode_int_match/7ff997f0: Detected failure in running test, will attempt to retry test: 1 times
returncode_int_match/7ff997f0: Run - 1/1
returncode_int_match/7ff997f0: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/7ff997f0: failed to submit job with returncode: 128
returncode_int_match/7ff997f0: Test completed in 0.014951 seconds with returncode: 128
returncode_int_match/7ff997f0: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/7ff997f0/returncode_int_match.out
returncode_int_match/7ff997f0: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/7ff997f0/returncode_int_match.err
returncode_int_match/7ff997f0: Checking returncode - 128 is matched in list [128]
exit1_pass/fca13cf8: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/fca13cf8/stage
exit1_pass/fca13cf8: Running Test via command: bash exit1_pass_build.sh
exit1_pass/fca13cf8: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_pass/fca13cf8 ─────────────────────

exit1_pass/fca13cf8: Detected failure in running test, will attempt to retry test: 1 times
exit1_pass/fca13cf8: Run - 1/1
exit1_pass/fca13cf8: Running Test via command: bash exit1_pass_build.sh
exit1_pass/fca13cf8: failed to submit job with returncode: 1
exit1_pass/fca13cf8: Test completed in 0.014001 seconds with returncode: 1
exit1_pass/fca13cf8: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/fca13cf8/exit1_pass.out
exit1_pass/fca13cf8: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/fca13cf8/exit1_pass.err
exit1_pass/fca13cf8: Checking returncode - 1 is matched in list [1]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ returncode_int_match/7f │ generic.local.bash │ PASS   │ 128        │ 0.015   │
│ f997f0                  │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_pass/fca13cf8     │ generic.local.bash │ PASS   │ 1          │ 0.014   │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 2/2 Percentage: 100.000%
Failed Tests: 0/2 Percentage: 0.000%


Adding 2 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_yb0sw1ak.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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:17:59                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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/file_count_filetype.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/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/invalid_executor.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/perf_checks/assert_lt.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/burstbuffer_datawarp_executors.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/containers/container_executor/ubuntu.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/shell_examples.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/test_status/explicit_state.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/perf_checks/assert_eq.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/python-shell.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/metrics/metrics_file_regex_invalid_file.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/perf_checks/assert_ne.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/csh_shell_examples.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/test_status/status_regex.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/perf_checks/assert_le.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/metrics/missing_required_in_metrics.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/test_status/pass_returncode.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/exists.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/summary_example.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/perf_checks/assert_ge.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/test_status/runtime_status_test.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/hello_world.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/perf_checks/contains.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/invalid_tags.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/containers/run_script.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/test_status/file_count.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_gt.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/shebang.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/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/metrics/invalid_metric_name.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/multi_executors/executor_regex_script.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/gcc_version.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/job_dependency/ex4.yml                                             ║
╚══════════════════════════════════════════════════════════════════════════════╝


Total Discovered Buildspecs:  66
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  66
────────────────────────────── Parsing Buildspecs ──────────────────────────────
/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/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/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/environment.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/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/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/add_numbers.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/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_pattern.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/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/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/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/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_eq_exceptions.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/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/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/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/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/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/compilation/stream.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/is_symlink.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/run_commands.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/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/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/exists.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/summary_example.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/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/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/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/python-hello.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/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/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/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/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/vars.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/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_gt.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/shebang.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/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/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/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/gcc_version.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/job_dependency/ex4.yml: skipping test because 'maintainers' field is not specified in buildspec.
Valid Buildspecs: 60
Invalid Buildspecs: 6
/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/job_dependency/ex1.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/invalid_executor.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/perf_checks/assert_lt.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/burstbuffer_datawarp_executors.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/test_status/file_count_pattern.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/job_dependency/ex2.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/containers/container_executor/python_container.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_eq_exceptions.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/multi_executors/executors_var_env_declaration.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/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/containers/bind_mounts.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/compilation/stream.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/is_symlink.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/run_commands.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/test_status/pass_returncode.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/exists.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/summary_example.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/perf_checks/assert_ge.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/compilation/compiler_exclude.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/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/perf_checks/contains.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/test_status/mode.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/vars.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/multi_executors/executor_scheduler.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/hello_world.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/tags_example.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/multi_executors/executor_regex_script.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/gcc_version.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/job_dependency/ex4.yml: VALID
/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/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/invalid_tags.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
                            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… │
└──────────────────────────────────────────────────────────────────────────────┘
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/6cd3 │        │ local.ba │          │       │       │ world    │ ocs/che │
│ 2992     │        │ 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/6cd32992: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/6cd32992
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
hello_world/6cd32992 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder              ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ hello_world/6cd32992 │
└──────────────────────┘
hello_world/6cd32992: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/6cd32992/stage
hello_world/6cd32992: Running Test via command: bash hello_world_build.sh
hello_world/6cd32992: Test completed in 0.006102 seconds with returncode: 0
hello_world/6cd32992: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/6cd32992/hello_world.out
hello_world/6cd32992: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/6cd32992/hello_world.err
                                Test Summary                                 
┏━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder              ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ hello_world/6cd32992 │ generic.local.bash │ PASS   │ 0          │ 0.006   │
└──────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%


Adding 1 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_2zmvkh1r.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. We inform buildtest to stop after build stage (--stage=build) for more details see Configure Build Stages.

buildtest build -b tutorials --filter type=script --stage=build
$ buildtest build -b tutorials --filter type=script --stage=build
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:00                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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/metrics/metrics_regex.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_ge.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/job_dependency/ex3.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/python-hello.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/explicit_state.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/skip_buildspec.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/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/shebang.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/test_status/file_exists_exception.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/compilation/stream.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/summary_example.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/exists.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/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/perf_checks/assert_ne.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_eq.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/csh_shell_examples.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/perf_checks/assert_gt.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/containers/container_executor/python_container.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/metrics/invalid_metric_name.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/containers/hello_world.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/invalid_buildspec_section.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/pass_returncode.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/test_status/file_count.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/perf_checks/assert_range.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/perf_checks/assert_eq_exceptions.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/invalid_executor.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/test_status/status_regex.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/test_status/regex_on_filename.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/vars.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/multi_executors/executor_scheduler.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/burstbuffer_datawarp_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/contains.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/hello_world.yml                                                    ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/containers/run_commands.yml                                        ║
╚══════════════════════════════════════════════════════════════════════════════╝


Total Discovered Buildspecs:  66
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  66
────────────────────────────── Parsing Buildspecs ──────────────────────────────
skip: skipping test due to 'skip' property.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/tutorials/skip_buildspec.yml: skipping all test since 'skip' is defined
[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: 60
Invalid Buildspecs: 6
/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/skip_tests.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/add_numbers.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/multi_executors/executors_var_env_declaration.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/sleep.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/metrics/metrics_file_regex_invalid_file.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/file_and_dir_check.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/shebang.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/job_dependency/ex1.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/summary_example.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/exists.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/perf_checks/assert_ne.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_eq.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/csh_shell_examples.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/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/test_status/runtime_status_test.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/containers/hello_world.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/maintainers_example.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/tags_example.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/compilation/hello_world_compilation.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/executor_regex_script.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/status_by_executors.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/environment.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/compilation/compiler_exclude.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/mode.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/test_status/file_count_pattern.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/python-shell.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/test_status/file_count_file_traverse_limit.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/containers/run_script.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/containers/run_commands.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/invalid_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/metrics/missing_required_in_metrics.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
                            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: 101
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━┓
┃          ┃        ┃          ┃          ┃       ┃       ┃ descrip ┃ buildspe ┃
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ tion    ┃ cs       ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━┩
│ metric_r │ script │ generic. │ None     │ None  │ None  │ capture │ /home/do │
│ egex_exa │        │ local.ba │          │       │       │ result  │ cs/check │
│ mple/72d │        │ sh       │          │       │       │ metric  │ outs/rea │
│ f4a9b    │        │          │          │       │       │ 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/545fde │        │ sh       │          │       │       │ metric  │ outs/rea │
│ 78       │        │          │          │       │       │ from    │ dthedocs │
│          │        │          │          │       │       │ file    │ .org/use │
│          │        │          │          │       │       │ path    │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/me │
│          │        │          │          │       │       │         │ trics/me │
│          │        │          │          │       │       │         │ trics_re │
│          │        │          │          │       │       │         │ gex.yml  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ unskippe │ script │ generic. │ None     │ None  │ None  │ This    │ /home/do │
│ d/66c087 │        │ 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     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ stream_t │ script │ generic. │ None     │ None  │ None  │ Run     │ /home/do │
│ est/0923 │        │ local.ba │          │       │       │ stream  │ cs/check │
│ 93c1     │        │ 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  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ add_numb │ script │ generic. │ None     │ None  │ None  │ Add X+Y │ /home/do │
│ ers/0cc2 │        │ local.ba │          │       │       │         │ cs/check │
│ f98c     │        │ sh       │          │       │       │         │ outs/rea │
│          │        │          │          │       │       │         │ dthedocs │
│          │        │          │          │       │       │         │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/ad │
│          │        │          │          │       │       │         │ d_number │
│          │        │          │          │       │       │         │ s.yml    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ pass_tes │ script │ generic. │ None     │ None  │ None  │ This    │ /home/do │
│ t/2a1fba │        │ local.ba │          │       │       │ test    │ cs/check │
│ 34       │        │ 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/608985 │        │ local.ba │          │       │       │ test    │ cs/check │
│ e2       │        │ 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/11f06 │        │ sh       │          │       │       │ will    │ outs/rea │
│ c13      │        │          │          │       │       │ 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/1fecb │        │ local.ba │          │       │       │ will    │ cs/check │
│ 84e      │        │ 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     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ 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/7 │        │          │          │       │       │ vars by │ dthedocs │
│ 00b361f  │        │          │          │       │       │ 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/a │        │          │          │       │       │ vars by │ dthedocs │
│ a32f20a  │        │          │          │       │       │ 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  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ python_h │ script │ generic. │ None     │ None  │ None  │ Hello   │ /home/do │
│ ello/280 │        │ local.ba │          │       │       │ World   │ cs/check │
│ 6cf18    │        │ sh       │          │       │       │ python  │ outs/rea │
│          │        │          │          │       │       │         │ dthedocs │
│          │        │          │          │       │       │         │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/py │
│          │        │          │          │       │       │         │ thon-hel │
│          │        │          │          │       │       │         │ lo.yml   │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ sleep/e3 │ script │ generic. │ None     │ None  │ None  │ sleep 2 │ /home/do │
│ 9f0ae3   │        │ local.ba │          │       │       │ seconds │ cs/check │
│          │        │ sh       │          │       │       │         │ outs/rea │
│          │        │          │          │       │       │         │ dthedocs │
│          │        │          │          │       │       │         │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/sl │
│          │        │          │          │       │       │         │ eep.yml  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ always_p │ script │ generic. │ None     │ None  │ None  │ This    │ /home/do │
│ ass/5950 │        │ local.sh │          │       │       │ test    │ cs/check │
│ 32c6     │        │          │          │       │       │ 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/dc57 │        │ local.sh │          │       │       │ test    │ cs/check │
│ 5d04     │        │          │          │       │       │ 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/fedd5 │        │          │          │       │       │ 'FAIL'  │ dthedocs │
│ 9c1      │        │          │          │       │       │ 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/ff │        │          │          │       │       │ 'PASS'  │ dthedocs │
│ 851942   │        │          │          │       │       │ 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     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ 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/5 │        │          │          │       │       │ from    │ dthedocs │
│ a4de720  │        │          │          │       │       │ 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        │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_and │ script │ generic. │ None     │ None  │ None  │ status  │ /home/do │
│ _dir_che │        │ local.ba │          │       │       │ check   │ cs/check │
│ cks/290a │        │ sh       │          │       │       │ for     │ outs/rea │
│ e343     │        │          │          │       │       │ 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/7e5 │        │          │          │       │       │ files   │ dthedocs │
│ 20d48    │        │          │          │       │       │ 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 │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_l │ script │ generic. │ None     │ None  │ None  │ Run     │ /home/do │
│ e_exampl │        │ local.ba │          │       │       │ stream  │ cs/check │
│ e/be30d9 │        │ sh       │          │       │       │ test    │ outs/rea │
│ 8b       │        │          │          │       │       │ 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  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ bash_log │ script │ generic. │ None     │ None  │ None  │ customi │ /home/do │
│ in_sheba │        │ local.ba │          │       │       │ ze      │ cs/check │
│ ng/fcc47 │        │ sh       │          │       │       │ shebang │ outs/rea │
│ fa9      │        │          │          │       │       │ 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/6c │        │ sh       │          │       │       │ shebang │ outs/rea │
│ 00a7cb   │        │          │          │       │       │ line    │ dthedocs │
│          │        │          │          │       │       │ with    │ .org/use │
│          │        │          │          │       │       │ default │ r_builds │
│          │        │          │          │       │       │ bash    │ /buildte │
│          │        │          │          │       │       │ (nonlog │ st/check │
│          │        │          │          │       │       │ in)     │ outs/sta │
│          │        │          │          │       │       │ shell   │ ble/tuto │
│          │        │          │          │       │       │         │ rials/sh │
│          │        │          │          │       │       │         │ ebang.ym │
│          │        │          │          │       │       │         │ l        │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ symlink_ │ script │ generic. │ None     │ None  │ None  │ status  │ /home/do │
│ test/e04 │        │ local.ba │          │       │       │ check   │ cs/check │
│ dab04    │        │ 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 │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ jobA/af0 │ script │ generic. │ None     │ None  │ None  │ no job  │ /home/do │
│ 9e91c    │        │ 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/703 │ script │ generic. │ None     │ None  │ None  │ job     │ /home/do │
│ f22c7    │        │ 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/b6c │ script │ generic. │ None     │ None  │ None  │ job     │ /home/do │
│ f0c73    │        │ 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     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ stream_o │ script │ generic. │ builtin_ │ None  │ None  │ STREAM  │ /home/do │
│ penmp_c/ │        │ local.ba │ gcc      │       │       │ Microbe │ cs/check │
│ 6647c4d6 │        │ 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     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ summary_ │ script │ generic. │ None     │ None  │ None  │ The     │ /home/do │
│ example/ │        │ local.ba │          │       │       │ summary │ cs/check │
│ 8c67a44e │        │ 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        │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ gcc_vers │ script │ generic. │ None     │ None  │ None  │ Print   │ /home/do │
│ ion/fb1b │        │ local.ba │          │       │       │ gcc     │ cs/check │
│ 8a09     │        │ sh       │          │       │       │ version │ outs/rea │
│          │        │          │          │       │       │         │ dthedocs │
│          │        │          │          │       │       │         │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/gc │
│          │        │          │          │       │       │         │ c_versio │
│          │        │          │          │       │       │         │ n.yml    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_e │ script │ generic. │ None     │ None  │ None  │ status  │ /home/do │
│ xists/b8 │        │ local.ba │          │       │       │ check   │ cs/check │
│ a1f1b2   │        │ 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/84 │        │ sh       │          │       │       │ failure │ outs/rea │
│ 074ff4   │        │          │          │       │       │ for     │ dthedocs │
│          │        │          │          │       │       │ existen │ .org/use │
│          │        │          │          │       │       │ ce      │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/te │
│          │        │          │          │       │       │         │ st_statu │
│          │        │          │          │       │       │         │ s/exists │
│          │        │          │          │       │       │         │ .yml     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_exi │ script │ generic. │ None     │ None  │ None  │ this    │ /home/do │
│ sts_pass │        │ local.ba │          │       │       │ test    │ cs/check │
│ /de0cfa5 │        │ sh       │          │       │       │ will    │ outs/rea │
│ 4        │        │          │          │       │       │ 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    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_cou │ script │ generic. │ None     │ None  │ None  │ Count   │ /home/do │
│ nt_by_fi │        │ local.ba │          │       │       │ the     │ cs/check │
│ letype/f │        │ sh       │          │       │       │ number  │ outs/rea │
│ 02b37cd  │        │          │          │       │       │ 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        │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_n │ script │ generic. │ None     │ None  │ None  │ Test    │ /home/do │
│ e_exampl │        │ local.ba │          │       │       │ for     │ cs/check │
│ e/7ec59a │        │ sh       │          │       │       │ assert  │ outs/rea │
│ ab       │        │          │          │       │       │ not     │ dthedocs │
│          │        │          │          │       │       │ equal   │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/pe │
│          │        │          │          │       │       │         │ rf_check │
│          │        │          │          │       │       │         │ s/assert │
│          │        │          │          │       │       │         │ _ne.yml  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ test1/f1 │ script │ generic. │ None     │ None  │ None  │ This    │ /home/do │
│ 312838   │        │ 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/13 │ script │ generic. │ None     │ None  │ None  │ This    │ /home/do │
│ 4dd10d   │        │ 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/e8 │ script │ generic. │ None     │ None  │ None  │ This    │ /home/do │
│ 1e073d   │        │ 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     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_e │ script │ generic. │ None     │ None  │ None  │ Test    │ /home/do │
│ q_exampl │        │ local.ba │          │       │       │ for     │ cs/check │
│ e/6b60ef │        │ sh       │          │       │       │ assert  │ outs/rea │
│ 13       │        │          │          │       │       │ equalit │ dthedocs │
│          │        │          │          │       │       │ y       │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/pe │
│          │        │          │          │       │       │         │ rf_check │
│          │        │          │          │       │       │         │ s/assert │
│          │        │          │          │       │       │         │ _eq.yml  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ _bin_sh_ │ script │ generic. │ None     │ None  │ None  │ /bin/sh │ /home/do │
│ shell/05 │        │ local.sh │          │       │       │ shell   │ cs/check │
│ 843a7e   │        │          │          │       │       │ 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 │
│ ed8e3b91 │        │ 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/31b10 │        │ local.ba │          │       │       │ shell   │ cs/check │
│ 4a6      │        │ 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 │
│ /c8535fe │        │ local.sh │          │       │       │ shell   │ cs/check │
│ 6        │        │          │          │       │       │ 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/8c │        │ local.sh │          │       │       │ options │ cs/check │
│ 148919   │        │          │          │       │       │         │ outs/rea │
│          │        │          │          │       │       │         │ dthedocs │
│          │        │          │          │       │       │         │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/sh │
│          │        │          │          │       │       │         │ ell_exam │
│          │        │          │          │       │       │         │ ples.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ csh_shel │ script │ generic. │ None     │ None  │ None  │ csh     │ /home/do │
│ l/11e8cc │        │ local.cs │          │       │       │ shell   │ cs/check │
│ fd       │        │ h        │          │       │       │ example │ outs/rea │
│          │        │          │          │       │       │         │ dthedocs │
│          │        │          │          │       │       │         │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/cs │
│          │        │          │          │       │       │         │ h_shell_ │
│          │        │          │          │       │       │         │ examples │
│          │        │          │          │       │       │         │ .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 │
│ 8ff1d279 │        │          │          │       │       │ in      │ dthedocs │
│          │        │          │          │       │       │ contain │ .org/use │
│          │        │          │          │       │       │ er      │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/co │
│          │        │          │          │       │       │         │ ntainers │
│          │        │          │          │       │       │         │ /bind_mo │
│          │        │          │          │       │       │         │ unts.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_g │ script │ generic. │ None     │ None  │ None  │ Run     │ /home/do │
│ t_exampl │        │ local.ba │          │       │       │ stream  │ cs/check │
│ e/de6911 │        │ sh       │          │       │       │ test    │ outs/rea │
│ 7a       │        │          │          │       │       │ 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  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ timelimi │ script │ generic. │ None     │ None  │ None  │ Run a   │ /home/do │
│ t_min_ma │        │ local.sh │          │       │       │ sleep   │ cs/check │
│ x/ce7002 │        │          │          │       │       │ job for │ outs/rea │
│ c6       │        │          │          │       │       │ 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/59 │        │ local.sh │          │       │       │ sleep   │ cs/check │
│ 74c183   │        │          │          │       │       │ 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/73 │        │ local.sh │          │       │       │ sleep   │ cs/check │
│ 97cc03   │        │          │          │       │       │ 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/62496 │        │          │          │       │       │ fails   │ outs/rea │
│ ffa      │        │          │          │       │       │ 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/047b0 │        │          │          │       │       │ fails   │ outs/rea │
│ 19c      │        │          │          │       │       │ 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        │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ runtime_ │ script │ generic. │ None     │ None  │ None  │ This    │ /home/do │
│ test/baf │        │ local.ba │          │       │       │ test    │ cs/check │
│ 6ce26    │        │ 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/356935 │        │ sh       │          │       │       │ will    │ outs/rea │
│ 4c       │        │          │          │       │       │ 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/01f62c │        │ sh       │          │       │       │ will    │ outs/rea │
│ ef       │        │          │          │       │       │ 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     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ hello_wo │ script │ generic. │ None     │ None  │ None  │ run     │ /home/do │
│ rld_cont │        │ local.ba │          │       │       │ contain │ cs/check │
│ ainer_no │        │ sh       │          │       │       │ er with │ outs/rea │
│ _command │        │          │          │       │       │ no      │ dthedocs │
│ s/66b0b4 │        │          │          │       │       │ command │ .org/use │
│ 7e       │        │          │          │       │       │ s       │ 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 │
│ t_exampl │        │ local.ba │          │       │       │ stream  │ cs/check │
│ e/254c44 │        │ sh       │          │       │       │ test    │ outs/rea │
│ a2       │        │          │          │       │       │ 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  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ foo_bar/ │ script │ generic. │ None     │ None  │ None  │ prints  │ /home/do │
│ e7e8af3c │        │ 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    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ exit1_fa │ script │ generic. │ None     │ None  │ None  │ exit 1  │ /home/do │
│ il/ae426 │        │ local.ba │          │       │       │ by      │ cs/check │
│ 6a8      │        │ 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/4a25d │        │ local.ba │          │       │       │ exit 1  │ cs/check │
│ 24f      │        │ 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 │
│ /9c1ee13 │        │          │          │       │       │ it      │ dthedocs │
│ b        │        │          │          │       │       │ 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/305 │        │ sh       │          │       │       │ matches │ outs/rea │
│ cc1c4    │        │          │          │       │       │ 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    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ string_t │ script │ generic. │ None     │ None  │ None  │ tags    │ /home/do │
│ ag/42514 │        │ local.ba │          │       │       │ can be  │ cs/check │
│ 64d      │        │ 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/c35 │        │ sh       │          │       │       │ a list  │ outs/rea │
│ 46ff8    │        │          │          │       │       │ of      │ dthedocs │
│          │        │          │          │       │       │ strings │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/ta │
│          │        │          │          │       │       │         │ gs_examp │
│          │        │          │          │       │       │         │ le.yml   │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_cou │ script │ generic. │ None     │ None  │ None  │ file    │ /home/do │
│ nt_on_di │        │ local.ba │          │       │       │ count   │ cs/check │
│ rectory/ │        │ sh       │          │       │       │ check   │ outs/rea │
│ ef98a2d0 │        │          │          │       │       │ 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 │
│ 508c37f6 │        │          │          │       │       │ extensi │ dthedocs │
│          │        │          │          │       │       │ on      │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/te │
│          │        │          │          │       │       │         │ st_statu │
│          │        │          │          │       │       │         │ s/file_c │
│          │        │          │          │       │       │         │ ount.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ hello_wo │ script │ generic. │ builtin_ │ None  │ None  │ Hello   │ /home/do │
│ rld_c_cp │        │ local.ba │ gcc      │       │       │ world   │ cs/check │
│ p/e3d515 │        │ sh       │          │       │       │ compila │ outs/rea │
│ 28       │        │          │          │       │       │ 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    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_r │ script │ generic. │ None     │ None  │ None  │ Example │ /home/do │
│ ange_ex/ │        │ local.ba │          │       │       │ on      │ cs/check │
│ ee2fd646 │        │ 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       │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ multiple │ script │ generic. │ None     │ None  │ None  │ run     │ /home/do │
│ _executo │        │ local.ba │          │       │       │ test    │ cs/check │
│ rs/964bf │        │ sh       │          │       │       │ with    │ outs/rea │
│ 372      │        │          │          │       │       │ 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/8d187 │        │          │          │       │       │ with    │ outs/rea │
│ 5ce      │        │          │          │       │       │ 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  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ assert_e │ script │ generic. │ None     │ None  │ None  │ An      │ /home/do │
│ q_invali │        │ local.ba │          │       │       │ invalid │ cs/check │
│ d_metric │        │ sh       │          │       │       │ metric  │ outs/rea │
│ /d895eda │        │          │          │       │       │ 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/d2729 │        │ sh       │          │       │       │ will    │ outs/rea │
│ aca      │        │          │          │       │       │ 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       │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_r │ script │ generic. │ None     │ None  │ None  │ define  │ /home/do │
│ eturncod │        │ local.ba │          │       │       │ status  │ cs/check │
│ e_by_exe │        │ sh       │          │       │       │ per     │ outs/rea │
│ cutors/5 │        │          │          │       │       │ executo │ dthedocs │
│ 464db5c  │        │          │          │       │       │ 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/b │        │          │          │       │       │ executo │ dthedocs │
│ b1b9acf  │        │          │          │       │       │ r type. │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/mu │
│          │        │          │          │       │       │         │ lti_exec │
│          │        │          │          │       │       │         │ utors/st │
│          │        │          │          │       │       │         │ atus_by_ │
│          │        │          │          │       │       │         │ executor │
│          │        │          │          │       │       │         │ s.yml    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ bash_env │ script │ generic. │ None     │ None  │ None  │ Declare │ /home/do │
│ _variabl │        │ local.ba │          │       │       │ environ │ cs/check │
│ es/40744 │        │ sh       │          │       │       │ ment    │ outs/rea │
│ 3e4      │        │          │          │       │       │ 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/fad5 │        │ h        │          │       │       │ example │ outs/rea │
│ c9f6     │        │          │          │       │       │ 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/5fe │        │ h        │          │       │       │ example │ outs/rea │
│ 130a2    │        │          │          │       │       │ to      │ dthedocs │
│          │        │          │          │       │       │ declare │ .org/use │
│          │        │          │          │       │       │ environ │ r_builds │
│          │        │          │          │       │       │ ment    │ /buildte │
│          │        │          │          │       │       │ variabl │ st/check │
│          │        │          │          │       │       │ es      │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/en │
│          │        │          │          │       │       │         │ vironmen │
│          │        │          │          │       │       │         │ t.yml    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_r │ script │ generic. │ None     │ None  │ None  │ Pass    │ /home/do │
│ egex_std │        │ local.ba │          │       │       │ test    │ cs/check │
│ out_pass │        │ sh       │          │       │       │ based   │ outs/rea │
│ /7fc03f3 │        │          │          │       │       │ on      │ dthedocs │
│ 1        │        │          │          │       │       │ 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 │
│ /1942575 │        │          │          │       │       │ on      │ dthedocs │
│ 0        │        │          │          │       │       │ 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 │
│ /6c5a4f0 │        │          │          │       │       │ 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       │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_r │ script │ generic. │ None     │ None  │ None  │ Pass    │ /home/do │
│ egex_std │        │ local.ba │          │       │       │ test    │ cs/check │
│ err_fail │        │ sh       │          │       │       │ based   │ outs/rea │
│ /c450bb4 │        │          │          │       │       │ 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       │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ regex_on │ script │ generic. │ None     │ None  │ None  │ Test    │ /home/do │
│ _multipl │        │ local.ba │          │       │       │ regex   │ cs/check │
│ e_files/ │        │ sh       │          │       │       │ on      │ outs/rea │
│ 8917249e │        │          │          │       │       │ 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 │
│ /22d15d9 │        │          │          │       │       │ ry is   │ .org/use │
│ 8        │        │          │          │       │       │ 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 │
│ /1de4fe0 │        │          │          │       │       │ variabl │ dthedocs │
│ d        │        │          │          │       │       │ 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  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ status_l │ script │ generic. │ None     │ None  │ None  │ Using   │ /home/do │
│ ogical_a │        │ local.ba │          │       │       │ logical │ cs/check │
│ nd/3c8fd │        │ sh       │          │       │       │ AND to  │ outs/rea │
│ 289      │        │          │          │       │       │ 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/9a24be │        │ sh       │          │       │       │ OR to   │ outs/rea │
│ d9       │        │          │          │       │       │ check   │ dthedocs │
│          │        │          │          │       │       │ status  │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/te │
│          │        │          │          │       │       │         │ st_statu │
│          │        │          │          │       │       │         │ s/mode.y │
│          │        │          │          │       │       │         │ ml       │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ variable │ script │ generic. │ None     │ None  │ None  │ Declare │ /home/do │
│ s_bash/f │        │ local.ba │          │       │       │ shell   │ cs/check │
│ b712238  │        │ sh       │          │       │       │ variabl │ outs/rea │
│          │        │          │          │       │       │ es in   │ dthedocs │
│          │        │          │          │       │       │ bash    │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/va │
│          │        │          │          │       │       │         │ rs.yml   │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_cou │ script │ generic. │ None     │ None  │ None  │ file    │ /home/do │
│ nt_by_ex │        │ local.ba │          │       │       │ count   │ cs/check │
│ pression │        │ sh       │          │       │       │ by      │ outs/rea │
│ /70e89d4 │        │          │          │       │       │ 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/6 │        │          │          │       │       │ extensi │ dthedocs │
│ 9bcd651  │        │          │          │       │       │ 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 │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ executor │ script │ generic. │ None     │ None  │ None  │ Declari │ /home/do │
│ s_sbatch │        │ local.ba │          │       │       │ ng env  │ cs/check │
│ _declara │        │ sh       │          │       │       │ and     │ outs/rea │
│ tion/14d │        │          │          │       │       │ vars by │ dthedocs │
│ bb352    │        │          │          │       │       │ 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/ae0 │        │          │          │       │       │ vars by │ dthedocs │
│ 5be88    │        │          │          │       │       │ executo │ .org/use │
│          │        │          │          │       │       │ rs      │ r_builds │
│          │        │          │          │       │       │ section │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/mu │
│          │        │          │          │       │       │         │ lti_exec │
│          │        │          │          │       │       │         │ utors/ex │
│          │        │          │          │       │       │         │ ecutor_s │
│          │        │          │          │       │       │         │ cheduler │
│          │        │          │          │       │       │         │ .yml     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ circle_a │ script │ generic. │ None     │ None  │ None  │ Calcula │ /home/do │
│ rea/a9e5 │        │ local.ba │          │       │       │ te      │ cs/check │
│ 88fd     │        │ 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   │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ 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/4f │        │          │          │       │       │ for     │ dthedocs │
│ 7a0237   │        │          │          │       │       │ 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/00 │        │          │          │       │       │ for     │ dthedocs │
│ e343d3   │        │          │          │       │       │ multipl │ .org/use │
│          │        │          │          │       │       │ e       │ r_builds │
│          │        │          │          │       │       │ executo │ /buildte │
│          │        │          │          │       │       │ rs      │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/bu │
│          │        │          │          │       │       │         │ rstbuffe │
│          │        │          │          │       │       │         │ r_datawa │
│          │        │          │          │       │       │         │ rp_execu │
│          │        │          │          │       │       │         │ tors.yml │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ file_tra │ script │ generic. │ None     │ None  │ None  │ Use of  │ /home/do │
│ verse_li │        │ local.ba │          │       │       │ file_tr │ cs/check │
│ mit/bf65 │        │ sh       │          │       │       │ averse_ │ outs/rea │
│ 148a     │        │          │          │       │       │ 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     │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ contains │ script │ generic. │ None     │ None  │ None  │ Status  │ /home/do │
│ _and_not │        │ local.ba │          │       │       │ check   │ cs/check │
│ _contain │        │ sh       │          │       │       │ based   │ outs/rea │
│ s/0416e6 │        │          │          │       │       │ on      │ dthedocs │
│ 65       │        │          │          │       │       │ 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/8f9 │        │ sh       │          │       │       │ based   │ outs/rea │
│ 730af    │        │          │          │       │       │ 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   │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ run_scri │ script │ generic. │ None     │ None  │ None  │ run a   │ /home/do │
│ pt_in_co │        │ local.ba │          │       │       │ python  │ cs/check │
│ ntainer/ │        │ sh       │          │       │       │ script  │ outs/rea │
│ 169ca0a2 │        │          │          │       │       │ in      │ dthedocs │
│          │        │          │          │       │       │ contain │ .org/use │
│          │        │          │          │       │       │ er      │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/co │
│          │        │          │          │       │       │         │ ntainers │
│          │        │          │          │       │       │         │ /run_scr │
│          │        │          │          │       │       │         │ ipt.yml  │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ hello_wo │ script │ generic. │ None     │ None  │ None  │ hello   │ /home/do │
│ rld/b7c4 │        │ local.ba │          │       │       │ world   │ cs/check │
│ c9fe     │        │ sh       │          │       │       │ example │ outs/rea │
│          │        │          │          │       │       │         │ dthedocs │
│          │        │          │          │       │       │         │ .org/use │
│          │        │          │          │       │       │         │ r_builds │
│          │        │          │          │       │       │         │ /buildte │
│          │        │          │          │       │       │         │ st/check │
│          │        │          │          │       │       │         │ outs/sta │
│          │        │          │          │       │       │         │ ble/tuto │
│          │        │          │          │       │       │         │ rials/he │
│          │        │          │          │       │       │         │ llo_worl │
│          │        │          │          │       │       │         │ d.yml    │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼─────────┼──────────┤
│ containe │ script │ generic. │ None     │ None  │ None  │ run     │ /home/do │
│ r_comman │        │ local.ba │          │       │       │ arbitra │ cs/check │
│ ds_ubunt │        │ sh       │          │       │       │ ry      │ outs/rea │
│ u/2dd1f6 │        │          │          │       │       │ linux   │ dthedocs │
│ 49       │        │          │          │       │       │ 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/80c8e9 │        │ sh       │          │       │       │ ry      │ outs/rea │
│ 48       │        │          │          │       │       │ 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        │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴─────────┴──────────┘
──────────────────────────────── Building Test ─────────────────────────────────
metric_regex_example/72df4a9b: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/metrics_regex/metric_regex_example/72df4a9b
metric_file_regex/545fde78: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/metrics_regex/metric_file_regex/545fde78
unskipped/66c0872b: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/skip_tests/unskipped/66c0872b
stream_test/092393c1: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/assert_ge/stream_test/092393c1
add_numbers/0cc2f98c: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/add_numbers/add_numbers/0cc2f98c
pass_test/2a1fba34: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ex3/pass_test/2a1fba34
fail_test/608985e2: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ex3/fail_test/608985e2
pass_and_fail_test/11f06c13: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ex3/pass_and_fail_test/11f06c13
final_test/1fecb84e: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ex3/final_test/1fecb84e
executors_vars_env_declaration/700b361f: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/executors_var_env_declaration/executors_vars_env_declaration/700b361f
executors_vars_env_declaration/aa32f20a: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/executors_var_env_declaration/executors_vars_env_declaration/aa32f20a
python_hello/2806cf18: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/2806cf18
sleep/e39f0ae3: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/sleep/sleep/e39f0ae3
always_pass/595032c6: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/explicit_state/always_pass/595032c6
always_fail/dc575d04: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/explicit_state/always_fail/dc575d04
test_fail_returncode_match/fedd59c1: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/explicit_state/test_fail_returncode_match/fedd59c1
test_pass_returncode_mismatch/ff851942: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/explicit_state/test_pass_returncode_mismatch/ff851942
metric_file_regex_invalid_file/5a4de720: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/metrics_file_regex_invalid_file/metric_file_regex_invalid_file/5a4de720
file_and_dir_checks/290ae343: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/file_and_dir_check/file_and_dir_checks/290ae343
combined_file_and_dir_checks/7e520d48: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/file_and_dir_check/combined_file_and_dir_checks/7e520d48
assert_le_example/be30d98b: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/assert_le/assert_le_example/be30d98b
bash_login_shebang/fcc47fa9: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/shebang/bash_login_shebang/fcc47fa9
bash_nonlogin_shebang/6c00a7cb: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/shebang/bash_nonlogin_shebang/6c00a7cb
symlink_test/e04dab04: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/is_symlink/symlink_test/e04dab04
jobA/af09e91c: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ex1/jobA/af09e91c
jobB/703f22c7: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ex1/jobB/703f22c7
jobC/b6cf0c73: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ex1/jobC/b6cf0c73
stream_openmp_c/6647c4d6: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/stream/stream_openmp_c/6647c4d6
summary_example/8c67a44e: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/summary_example/summary_example/8c67a44e
gcc_version/fb1b8a09: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/gcc_version/gcc_version/fb1b8a09
status_exists/b8a1f1b2: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/exists/status_exists/b8a1f1b2
status_exists_failure/84074ff4: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/exists/status_exists_failure/84074ff4
file_exists_pass/de0cfa54: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/file_exists_with_number/file_exists_pass/de0cfa54
file_count_by_filetype/f02b37cd: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/file_count_filetype/file_count_by_filetype/f02b37cd
assert_ne_example/7ec59aab: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/assert_ne/assert_ne_example/7ec59aab
test1/f1312838: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ex2/test1/f1312838
test2/134dd10d: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ex2/test2/134dd10d
test3/e81e073d: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ex2/test3/e81e073d
assert_eq_example/6b60ef13: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/assert_eq/assert_eq_example/6b60ef13
_bin_sh_shell/05843a7e: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/shell_examples/_bin_sh_shell/05843a7e
_bin_bash_shell/ed8e3b91: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/shell_examples/_bin_bash_shell/ed8e3b91
bash_shell/31b104a6: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/shell_examples/bash_shell/31b104a6
sh_shell/c8535fe6: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/shell_examples/sh_shell/c8535fe6
shell_options/8c148919: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/shell_examples/shell_options/8c148919
csh_shell/11e8ccfd: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/csh_shell_examples/csh_shell/11e8ccfd
bind_mount_in_container/8ff1d279: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/bind_mounts/bind_mount_in_container/8ff1d279
assert_gt_example/de69117a: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/assert_gt/assert_gt_example/de69117a
timelimit_min_max/ce7002c6: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/runtime_status_test/timelimit_min_max/ce7002c6
timelimit_min/5974c183: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/runtime_status_test/timelimit_min/5974c183
timelimit_max/7397cc03: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/runtime_status_test/timelimit_max/7397cc03
timelimit_min_fail/62496ffa: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/runtime_status_test/timelimit_min_fail/62496ffa
timelimit_max_fail/047b019c: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/runtime_status_test/timelimit_max_fail/047b019c
runtime_test/baf6ce26: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ex4/runtime_test/baf6ce26
runtime_test_pass/3569354c: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ex4/runtime_test_pass/3569354c
runtime_test_fail/01f62cef: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/ex4/runtime_test_fail/01f62cef
hello_world_container_no_commands/66b0b47e: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world_container_no_commands/66b0b47e
assert_lt_example/254c44a2: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/assert_lt/assert_lt_example/254c44a2
foo_bar/e7e8af3c: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/maintainers_example/foo_bar/e7e8af3c
exit1_fail/ae4266a8: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/ae4266a8
exit1_pass/4a25d24f: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/4a25d24f
returncode_list_mismatch/9c1ee13b: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/9c1ee13b
returncode_int_match/305cc1c4: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/305cc1c4
string_tag/4251464d: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/string_tag/4251464d
list_of_strings_tags/c3546ff8: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/tags_example/list_of_strings_tags/c3546ff8
file_count_on_directory/ef98a2d0: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/file_count/file_count_on_directory/ef98a2d0
file_count_by_extension/508c37f6: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/file_count/file_count_by_extension/508c37f6
hello_world_c_cpp/e3d51528: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world_compilation/hello_world_c_cpp/e3d51528
assert_range_ex/ee2fd646: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/assert_range/assert_range_ex/ee2fd646
multiple_executors/964bf372: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/executor_regex_script/multiple_executors/964bf372
multiple_executors/8d1875ce: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/executor_regex_script/multiple_executors/8d1875ce
assert_eq_invalid_metric/d895edad: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/d895edad
assert_eq_mismatch/d2729aca: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/d2729aca
status_returncode_by_executors/5464db5c: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/status_by_executors/status_returncode_by_executors/5464db5c
status_returncode_by_executors/bb1b9acf: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/status_by_executors/status_returncode_by_executors/bb1b9acf
bash_env_variables/407443e4: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/environment/bash_env_variables/407443e4
csh_env_declaration/fad5c9f6: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/environment/csh_env_declaration/fad5c9f6
tcsh_env_declaration/5fe130a2: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.csh/environment/tcsh_env_declaration/5fe130a2
status_regex_stdout_pass/7fc03f31: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/status_regex/status_regex_stdout_pass/7fc03f31
status_regex_stdout_fail/19425750: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/status_regex/status_regex_stdout_fail/19425750
status_regex_stderr_pass/6c5a4f0d: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/status_regex/status_regex_stderr_pass/6c5a4f0d
status_regex_stderr_fail/c450bb45: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/status_regex/status_regex_stderr_fail/c450bb45
regex_on_multiple_files/8917249e: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/regex_on_filename/regex_on_multiple_files/8917249e
regex_on_directory_not_supported/22d15d98: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/regex_on_filename/regex_on_directory_not_supported/22d15d98
file_expansion_supported/1de4fe0d: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/regex_on_filename/file_expansion_supported/1de4fe0d
status_logical_and/3c8fd289: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/mode/status_logical_and/3c8fd289
status_logical_or/9a24bed9: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/mode/status_logical_or/9a24bed9
variables_bash/fb712238: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/fb712238
file_count_by_expression/70e89d4d: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/file_count_pattern/file_count_by_expression/70e89d4d
file_extension_and_filepattern/69bcd651: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/file_count_pattern/file_extension_and_filepattern/69bcd651
executors_sbatch_declaration/14dbb352: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/executor_scheduler/executors_sbatch_declaration/14dbb352
executors_sbatch_declaration/ae05be88: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/executor_scheduler/executors_sbatch_declaration/ae05be88
circle_area/a9e588fd: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/a9e588fd
create_burst_buffer_executors/4f7a0237: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/burstbuffer_datawarp_executors/create_burst_buffer_executors/4f7a0237
create_burst_buffer_executors/00e343d3: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.sh/burstbuffer_datawarp_executors/create_burst_buffer_executors/00e343d3
file_traverse_limit/bf65148a: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/file_count_file_traverse_limit/file_traverse_limit/bf65148a
contains_and_not_contains/0416e665: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/contains/contains_and_not_contains/0416e665
assert_contains_fail/8f9730af: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/contains/assert_contains_fail/8f9730af
run_script_in_container/169ca0a2: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/run_script/run_script_in_container/169ca0a2
hello_world/b7c4c9fe: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/b7c4c9fe
container_commands_ubuntu/2dd1f649: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/run_commands/container_commands_ubuntu/2dd1f649
container_options/80c8e948: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/run_commands/container_options/80c8e948

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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:02                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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                                                   ║
╚══════════════════════════════════════════════════════════════════════════════╝
                            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 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/20c │        │ local.ba │          │       │       │ World    │ ocs/che │
│ 19e20    │        │ 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/c72a │        │ local.ba │          │       │       │ e circle │ ocs/che │
│ a9da     │        │ 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/20c19e20: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/20c19e20
circle_area/c72aa9da: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/c72aa9da
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
circle_area/c72aa9da does not have any dependencies adding test to queue
python_hello/20c19e20 does not have any dependencies adding test to queue
Builders Eligible to Run 
┏━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder               ┃
┡━━━━━━━━━━━━━━━━━━━━━━━┩
│ circle_area/c72aa9da  │
│ python_hello/20c19e20 │
└───────────────────────┘
circle_area/c72aa9da: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/c72aa9da/stage
circle_area/c72aa9da: Running Test via command: bash circle_area_build.sh
circle_area/c72aa9da: Test completed in 0.031163 seconds with returncode: 0
circle_area/c72aa9da: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/c72aa9da/circle_area.out
circle_area/c72aa9da: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/c72aa9da/circle_area.err
python_hello/20c19e20: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/20c19e20/stage
python_hello/20c19e20: Running Test via command: bash python_hello_build.sh
python_hello/20c19e20: Test completed in 0.030164 seconds with returncode: 0
python_hello/20c19e20: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/20c19e20/python_hello.out
python_hello/20c19e20: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/20c19e20/python_hello.err
                                 Test Summary                                 
┏━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder               ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ circle_area/c72aa9da  │ generic.local.bash │ PASS   │ 0          │ 0.031   │
├───────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ python_hello/20c19e20 │ generic.local.bash │ PASS   │ 0          │ 0.030   │
└───────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 2/2 Percentage: 100.000%
Failed Tests: 0/2 Percentage: 0.000%


Adding 2 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_n22l0jyr.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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:03                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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                                                   ║
╚══════════════════════════════════════════════════════════════════════════════╝
                            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 Discovered Buildspecs:  2
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  2
────────────────────────────── Parsing Buildspecs ──────────────────────────────
python_hello/b2d1ff30 is excluded since its not using batch executor
circle_area/1f34fae8 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/tmpjcb9dx2w/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 --stage option. The –stage option accepts parse or build, which will instruct buildtest to stop at parse or build phase of the pipeline.

Buildtest will validate all the buildspecs in the parse stage, so you can instruct buildtest to stop at parse stage via --stage=parse. 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 --stage=parse
$ buildtest build -b tutorials/vars.yml --stage=parse
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:03                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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 │
│ fe4a9b8  │        │ sh       │          │       │       │ variable │ ckouts/ │
│          │        │          │          │       │       │ s in     │ readthe │
│          │        │          │          │       │       │ bash     │ docs.or │
│          │        │          │          │       │       │          │ g/user_ │
│          │        │          │          │       │       │          │ builds/ │
│          │        │          │          │       │       │          │ buildte │
│          │        │          │          │       │       │          │ st/chec │
│          │        │          │          │       │       │          │ kouts/s │
│          │        │          │          │       │       │          │ table/t │
│          │        │          │          │       │       │          │ utorial │
│          │        │          │          │       │       │          │ s/vars. │
│          │        │          │          │       │       │          │ yml     │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘

Likewise, if you want to troubleshoot your test script without running them you can use --stage=build which will stop after build phase. This can be used when you are writing buildspec to troubleshoot how test is generated. In this next example, we inform buildtest to stop after build stage.

buildtest build -b tutorials/vars.yml --stage=build
$ buildtest build -b tutorials/vars.yml --stage=build
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:04                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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 │
│ 14d848a  │        │ 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/714d848a: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/714d848a

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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:04                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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/tmpjcb9dx2w/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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:05                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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/tmpjcb9dx2w/var/buildtest.log

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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:06                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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/9db3 │        │ local.ba │          │       │       │ e circle │ ocs/che │
│ cf17     │        │ 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/801b │        │ local.ba │          │       │       │ e circle │ ocs/che │
│ 3047     │        │ 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/3218 │        │ local.ba │          │       │       │ e circle │ ocs/che │
│ 4af7     │        │ 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/9db3cf17: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/9db3cf17
circle_area/801b3047: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/801b3047
circle_area/32184af7: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/32184af7
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
circle_area/9db3cf17 does not have any dependencies adding test to queue
circle_area/32184af7 does not have any dependencies adding test to queue
circle_area/801b3047 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder              ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ circle_area/9db3cf17 │
│ circle_area/32184af7 │
│ circle_area/801b3047 │
└──────────────────────┘
circle_area/9db3cf17: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/9db3cf17/stage
circle_area/9db3cf17: Running Test via command: bash circle_area_build.sh
circle_area/9db3cf17: Test completed in 0.032096 seconds with returncode: 0
circle_area/9db3cf17: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/9db3cf17/circle_area.out
circle_area/9db3cf17: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/9db3cf17/circle_area.err
circle_area/32184af7: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/32184af7/stage
circle_area/32184af7: Running Test via command: bash circle_area_build.sh
circle_area/32184af7: Test completed in 0.030899 seconds with returncode: 0
circle_area/32184af7: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/32184af7/circle_area.out
circle_area/32184af7: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/32184af7/circle_area.err
circle_area/801b3047: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/801b3047/stage
circle_area/801b3047: Running Test via command: bash circle_area_build.sh
circle_area/801b3047: Test completed in 0.031303 seconds with returncode: 0
circle_area/801b3047: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/801b3047/circle_area.out
circle_area/801b3047: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/801b3047/circle_area.err
                                Test Summary                                 
┏━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder              ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ circle_area/32184af7 │ generic.local.bash │ PASS   │ 0          │ 0.031   │
├──────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ circle_area/9db3cf17 │ generic.local.bash │ PASS   │ 0          │ 0.032   │
├──────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ circle_area/801b3047 │ generic.local.bash │ PASS   │ 0          │ 0.031   │
└──────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 3/3 Percentage: 100.000%
Failed Tests: 0/3 Percentage: 0.000%


Adding 3 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_j0fre3rv.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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:06                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝
                             Buildspecs By Tag=fail                             
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ ║
║ tutorials/test_status/pass_returncode.yml                                    ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/80e27 │        │ local.ba │          │       │       │ by       │ ocs/che │
│ e9b      │        │ 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/70cb6 │        │ local.ba │          │       │       │ exit 1   │ ocs/che │
│ c0f      │        │ 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/ │
│ /a2a4cbf │        │          │          │       │       │ failed   │ readthe │
│ d        │        │          │          │       │       │ 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/e94 │        │ sh       │          │       │       │ returnco │ ckouts/ │
│ b7475    │        │          │          │       │       │ 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/c9eb7 │        │ local.ba │          │       │       │ by       │ ocs/che │
│ edd      │        │ 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/e35f6 │        │ local.ba │          │       │       │ exit 1   │ ocs/che │
│ 895      │        │ 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/ │
│ /6187c29 │        │          │          │       │       │ failed   │ readthe │
│ 9        │        │          │          │       │       │ 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/468 │        │ sh       │          │       │       │ returnco │ ckouts/ │
│ 95dd6    │        │          │          │       │       │ 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/80e27e9b: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/80e27e9b
exit1_pass/70cb6c0f: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/70cb6c0f
returncode_list_mismatch/a2a4cbfd: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/a2a4cbfd
returncode_int_match/e94b7475: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/e94b7475
exit1_fail/c9eb7edd: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/c9eb7edd
exit1_pass/e35f6895: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/e35f6895
returncode_list_mismatch/6187c299: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/6187c299
returncode_int_match/46895dd6: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/46895dd6
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
exit1_pass/70cb6c0f does not have any dependencies adding test to queue
returncode_int_match/e94b7475 does not have any dependencies adding test to queue
exit1_pass/e35f6895 does not have any dependencies adding test to queue
returncode_list_mismatch/a2a4cbfd does not have any dependencies adding test to queue
exit1_fail/c9eb7edd does not have any dependencies adding test to queue
returncode_int_match/46895dd6 does not have any dependencies adding test to queue
exit1_fail/80e27e9b does not have any dependencies adding test to queue
returncode_list_mismatch/6187c299 does not have any dependencies adding test to queue
      Builders Eligible to Run       
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ exit1_pass/70cb6c0f               │
│ exit1_pass/e35f6895               │
│ returncode_int_match/e94b7475     │
│ returncode_list_mismatch/a2a4cbfd │
│ exit1_fail/c9eb7edd               │
│ returncode_int_match/46895dd6     │
│ exit1_fail/80e27e9b               │
│ returncode_list_mismatch/6187c299 │
└───────────────────────────────────┘
exit1_pass/70cb6c0f: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/70cb6c0f/stage
exit1_pass/70cb6c0f: Running Test via command: bash exit1_pass_build.sh
exit1_pass/70cb6c0f: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_pass/70cb6c0f ─────────────────────

exit1_pass/70cb6c0f: Detected failure in running test, will attempt to retry test: 1 times
exit1_pass/70cb6c0f: Run - 1/1
exit1_pass/70cb6c0f: Running Test via command: bash exit1_pass_build.sh
exit1_pass/70cb6c0f: failed to submit job with returncode: 1
exit1_pass/70cb6c0f: Test completed in 0.01468 seconds with returncode: 1
exit1_pass/70cb6c0f: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/70cb6c0f/exit1_pass.out
exit1_pass/70cb6c0f: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/70cb6c0f/exit1_pass.err
exit1_pass/70cb6c0f: Checking returncode - 1 is matched in list [1]
exit1_pass/e35f6895: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/e35f6895/stage
exit1_pass/e35f6895: Running Test via command: bash exit1_pass_build.sh
exit1_pass/e35f6895: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_pass/e35f6895 ─────────────────────

exit1_pass/e35f6895: Detected failure in running test, will attempt to retry test: 1 times
exit1_pass/e35f6895: Run - 1/1
exit1_pass/e35f6895: Running Test via command: bash exit1_pass_build.sh
exit1_pass/e35f6895: failed to submit job with returncode: 1
exit1_pass/e35f6895: Test completed in 0.014048 seconds with returncode: 1
exit1_pass/e35f6895: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/e35f6895/exit1_pass.out
exit1_pass/e35f6895: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/e35f6895/exit1_pass.err
exit1_pass/e35f6895: Checking returncode - 1 is matched in list [1]
returncode_int_match/e94b7475: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/e94b7475/stage
returncode_int_match/e94b7475: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/e94b7475: failed to submit job with returncode: 128
─────────────── Error Message for returncode_int_match/e94b7475 ────────────────

returncode_int_match/e94b7475: Detected failure in running test, will attempt to retry test: 1 times
returncode_int_match/e94b7475: Run - 1/1
returncode_int_match/e94b7475: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/e94b7475: failed to submit job with returncode: 128
returncode_int_match/e94b7475: Test completed in 0.014145 seconds with returncode: 128
returncode_int_match/e94b7475: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/e94b7475/returncode_int_match.out
returncode_int_match/e94b7475: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/e94b7475/returncode_int_match.err
returncode_int_match/e94b7475: Checking returncode - 128 is matched in list [128]
returncode_list_mismatch/a2a4cbfd: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/a2a4cbfd/stage
returncode_list_mismatch/a2a4cbfd: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/a2a4cbfd: failed to submit job with returncode: 2
───────────── Error Message for returncode_list_mismatch/a2a4cbfd ──────────────

returncode_list_mismatch/a2a4cbfd: Detected failure in running test, will attempt to retry test: 1 times
returncode_list_mismatch/a2a4cbfd: Run - 1/1
returncode_list_mismatch/a2a4cbfd: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/a2a4cbfd: failed to submit job with returncode: 2
returncode_list_mismatch/a2a4cbfd: Test completed in 0.014175 seconds with returncode: 2
returncode_list_mismatch/a2a4cbfd: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/a2a4cbfd/returncode_list_mismatch.out
returncode_list_mismatch/a2a4cbfd: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/a2a4cbfd/returncode_list_mismatch.err
returncode_list_mismatch/a2a4cbfd: Checking returncode - 2 is matched in list [1, 3]
exit1_fail/c9eb7edd: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/c9eb7edd/stage
exit1_fail/c9eb7edd: Running Test via command: bash exit1_fail_build.sh
exit1_fail/c9eb7edd: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_fail/c9eb7edd ─────────────────────

exit1_fail/c9eb7edd: Detected failure in running test, will attempt to retry test: 1 times
exit1_fail/c9eb7edd: Run - 1/1
exit1_fail/c9eb7edd: Running Test via command: bash exit1_fail_build.sh
exit1_fail/c9eb7edd: failed to submit job with returncode: 1
exit1_fail/c9eb7edd: Test completed in 0.014039 seconds with returncode: 1
exit1_fail/c9eb7edd: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/c9eb7edd/exit1_fail.out
exit1_fail/c9eb7edd: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/c9eb7edd/exit1_fail.err
returncode_int_match/46895dd6: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/46895dd6/stage
returncode_int_match/46895dd6: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/46895dd6: failed to submit job with returncode: 128
─────────────── Error Message for returncode_int_match/46895dd6 ────────────────

returncode_int_match/46895dd6: Detected failure in running test, will attempt to retry test: 1 times
returncode_int_match/46895dd6: Run - 1/1
returncode_int_match/46895dd6: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/46895dd6: failed to submit job with returncode: 128
returncode_int_match/46895dd6: Test completed in 0.01434 seconds with returncode: 128
returncode_int_match/46895dd6: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/46895dd6/returncode_int_match.out
returncode_int_match/46895dd6: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/46895dd6/returncode_int_match.err
returncode_int_match/46895dd6: Checking returncode - 128 is matched in list [128]
exit1_fail/80e27e9b: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/80e27e9b/stage
exit1_fail/80e27e9b: Running Test via command: bash exit1_fail_build.sh
exit1_fail/80e27e9b: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_fail/80e27e9b ─────────────────────

exit1_fail/80e27e9b: Detected failure in running test, will attempt to retry test: 1 times
exit1_fail/80e27e9b: Run - 1/1
exit1_fail/80e27e9b: Running Test via command: bash exit1_fail_build.sh
exit1_fail/80e27e9b: failed to submit job with returncode: 1
exit1_fail/80e27e9b: Test completed in 0.014956 seconds with returncode: 1
exit1_fail/80e27e9b: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/80e27e9b/exit1_fail.out
exit1_fail/80e27e9b: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/80e27e9b/exit1_fail.err
returncode_list_mismatch/6187c299: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/6187c299/stage
returncode_list_mismatch/6187c299: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/6187c299: failed to submit job with returncode: 2
───────────── Error Message for returncode_list_mismatch/6187c299 ──────────────

returncode_list_mismatch/6187c299: Detected failure in running test, will attempt to retry test: 1 times
returncode_list_mismatch/6187c299: Run - 1/1
returncode_list_mismatch/6187c299: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/6187c299: failed to submit job with returncode: 2
returncode_list_mismatch/6187c299: Test completed in 0.016105 seconds with returncode: 2
returncode_list_mismatch/6187c299: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/6187c299/returncode_list_mismatch.out
returncode_list_mismatch/6187c299: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/6187c299/returncode_list_mismatch.err
returncode_list_mismatch/6187c299: Checking returncode - 2 is matched in list [1, 3]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ returncode_int_match/46 │ generic.local.bash │ PASS   │ 128        │ 0.014   │
│ 895dd6                  │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_fail/80e27e9b     │ generic.local.bash │ FAIL   │ 1          │ 0.015   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_list_mismatc │ generic.local.bash │ FAIL   │ 2          │ 0.014   │
│ h/a2a4cbfd              │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_list_mismatc │ generic.local.bash │ FAIL   │ 2          │ 0.016   │
│ h/6187c299              │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_int_match/e9 │ generic.local.bash │ PASS   │ 128        │ 0.014   │
│ 4b7475                  │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_pass/70cb6c0f     │ generic.local.bash │ PASS   │ 1          │ 0.015   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_pass/e35f6895     │ generic.local.bash │ PASS   │ 1          │ 0.014   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_fail/c9eb7edd     │ generic.local.bash │ FAIL   │ 1          │ 0.014   │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 4/8 Percentage: 50.000%
Failed Tests: 4/8 Percentage: 50.000%


Adding 8 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_t0lhv5pb.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 0x7fd94bc7eee0>                       │ │
│ │             os = <module 'os' from                                       │ │
│ │                  '/home/docs/.asdf/installs/python/3.8.18/lib/python3.8… │ │
│ │         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:148 in main                                                │
│                                                                              │
│   145 │   if args.subcommands in ["build", "bd"]:                            │
│   146 │   │   stdout_file = tempfile.NamedTemporaryFile(delete=True, suffix= │
│   147 │   │   with Tee(stdout_file.name):                                    │
│ ❱ 148 │   │   │   cmd = BuildTest(                                           │
│   149 │   │   │   │   configuration=configuration,                           │
│   150 │   │   │   │   buildspecs=args.buildspec,                             │
│   151 │   │   │   │   exclude_buildspecs=args.exclude,                       │
│                                                                              │
│ ╭───────────────────────────────── locals ─────────────────────────────────╮ │
│ │             args = Namespace(account=None,                               │ │
│ │                    buildspec=['tutorials/test_status/pass_returncode.ym… │ │
│ │                    color=None, configfile=None, debug=False,             │ │
│ │                    editor=None, exclude=None, exclude_tags=None,         │ │
│ │                    executor=None, executor_type=None, filter=None,       │ │
│ │                    helpcolor=False, helpfilter=False, limit=None,        │ │
│ │                    loglevel='DEBUG', logpath=False, max_jobs=None,       │ │
│ │                    maxpendtime=None, module_purge=False, modules=None,   │ │
│ │                    name=None, no_color=False, nodes=None,                │ │
│ │                    pollinterval=None, print_log=False, procs=None,       │ │
│ │                    profile=None, rebuild=51, remove_stagedir=False,      │ │
│ │                    report=None, rerun=False, retry=1, save_profile=None, │ │
│ │                    stage=None, subcommands='build', tags=None,           │ │
│ │                    testdir=None, timeout=None, unload_modules=None,      │ │
│ │                    view_log=False)                                       │ │
│ │ buildtest_editor = '/usr/bin/vim'                                        │ │
│ │      config_file = None                                                  │ │
│ │    configuration = <buildtest.config.SiteConfiguration object at         │ │
│ │                    0x7fd949e11820>                                       │ │
│ │           logger = <Logger buildtest (DEBUG)>                            │ │
│ │         no_color = False                                                 │ │
│ │           parser = <buildtest.cli.BuildTestParser object at              │ │
│ │                    0x7fd94bd22a90>                                       │ │
│ │      report_file = None                                                  │ │
│ │      stdout_file = <tempfile._TemporaryFileWrapper object at             │ │
│ │                    0x7fd949e4b580>                                       │ │
│ │           system = <buildtest.system.BuildTestSystem object at           │ │
│ │                    0x7fd949e112e0>                                       │ │
│ ╰──────────────────────────────────────────────────────────────────────────╯ │
│                                                                              │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/stable/ │
│ buildtest/cli/build.py:629 in __init__                                       │
│                                                                              │
│    626 │   │   │   │   raise BuildTestError(f"{rebuild} is not of type int") │
│    627 │   │   │                                                             │
│    628 │   │   │   if rebuild > 50:                                          │
│ ❱  629 │   │   │   │   raise BuildTestError(                                 │
│    630 │   │   │   │   │   f"--rebuild {rebuild} exceeds maximum rebuild lim │
│    631 │   │   │   │   )                                                     │
│    632                                                                       │
│                                                                              │
│ ╭───────────────────────────────── locals ─────────────────────────────────╮ │
│ │            account = None                                                │ │
│ │           arg_name = None                                                │ │
│ │         buildspecs = ['tutorials/test_status/pass_returncode.yml']       │ │
│ │   buildtest_system = <buildtest.system.BuildTestSystem object at         │ │
│ │                      0x7fd949e112e0>                                     │ │
│ │      configuration = <buildtest.config.SiteConfiguration object at       │ │
│ │                      0x7fd949e11820>                                     │ │
│ │ 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            │ │
│ │                      0x7fd949de59a0>                                     │ │
│ │              stage = None                                                │ │
│ │               tags = None                                                │ │
│ │            testdir = None                                                │ │
│ │            timeout = None                                                │ │
│ │     unload_modules = 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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:08                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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/c3792 │        │ local.ba │          │       │       │ by       │ ocs/che │
│ 104      │        │ 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/d4e66 │        │ local.ba │          │       │       │ exit 1   │ ocs/che │
│ 8ef      │        │ 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/ │
│ /b70d4e2 │        │          │          │       │       │ failed   │ readthe │
│ 7        │        │          │          │       │       │ 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/879 │        │ sh       │          │       │       │ returnco │ ckouts/ │
│ b33f7    │        │          │          │       │       │ 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/c3792104: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/c3792104
exit1_pass/d4e668ef: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/d4e668ef
returncode_list_mismatch/b70d4e27: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/b70d4e27
returncode_int_match/879b33f7: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/879b33f7
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
exit1_pass/d4e668ef does not have any dependencies adding test to queue
exit1_fail/c3792104 does not have any dependencies adding test to queue
returncode_list_mismatch/b70d4e27 does not have any dependencies adding test to queue
returncode_int_match/879b33f7 does not have any dependencies adding test to queue
      Builders Eligible to Run       
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ exit1_pass/d4e668ef               │
│ exit1_fail/c3792104               │
│ returncode_list_mismatch/b70d4e27 │
│ returncode_int_match/879b33f7     │
└───────────────────────────────────┘
exit1_pass/d4e668ef: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/d4e668ef/stage
exit1_pass/d4e668ef: Running Test via command: bash exit1_pass_build.sh
exit1_pass/d4e668ef: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_pass/d4e668ef ─────────────────────

exit1_pass/d4e668ef: Detected failure in running test, will attempt to retry test: 1 times
exit1_pass/d4e668ef: Run - 1/1
exit1_pass/d4e668ef: Running Test via command: bash exit1_pass_build.sh
exit1_pass/d4e668ef: failed to submit job with returncode: 1
exit1_pass/d4e668ef: Test completed in 0.014818 seconds with returncode: 1
exit1_pass/d4e668ef: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/d4e668ef/exit1_pass.out
exit1_pass/d4e668ef: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/d4e668ef/exit1_pass.err
exit1_pass/d4e668ef: Checking returncode - 1 is matched in list [1]
exit1_fail/c3792104: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/c3792104/stage
exit1_fail/c3792104: Running Test via command: bash exit1_fail_build.sh
exit1_fail/c3792104: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_fail/c3792104 ─────────────────────

exit1_fail/c3792104: Detected failure in running test, will attempt to retry test: 1 times
exit1_fail/c3792104: Run - 1/1
exit1_fail/c3792104: Running Test via command: bash exit1_fail_build.sh
exit1_fail/c3792104: failed to submit job with returncode: 1
exit1_fail/c3792104: Test completed in 0.01402 seconds with returncode: 1
exit1_fail/c3792104: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/c3792104/exit1_fail.out
exit1_fail/c3792104: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/c3792104/exit1_fail.err
returncode_list_mismatch/b70d4e27: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/b70d4e27/stage
returncode_list_mismatch/b70d4e27: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/b70d4e27: failed to submit job with returncode: 2
───────────── Error Message for returncode_list_mismatch/b70d4e27 ──────────────

returncode_list_mismatch/b70d4e27: Detected failure in running test, will attempt to retry test: 1 times
returncode_list_mismatch/b70d4e27: Run - 1/1
returncode_list_mismatch/b70d4e27: Running Test via command: bash returncode_list_mismatch_build.sh
returncode_list_mismatch/b70d4e27: failed to submit job with returncode: 2
returncode_list_mismatch/b70d4e27: Test completed in 0.01453 seconds with returncode: 2
returncode_list_mismatch/b70d4e27: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/b70d4e27/returncode_list_mismatch.out
returncode_list_mismatch/b70d4e27: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/b70d4e27/returncode_list_mismatch.err
returncode_list_mismatch/b70d4e27: Checking returncode - 2 is matched in list [1, 3]
returncode_int_match/879b33f7: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/879b33f7/stage
returncode_int_match/879b33f7: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/879b33f7: failed to submit job with returncode: 128
─────────────── Error Message for returncode_int_match/879b33f7 ────────────────

returncode_int_match/879b33f7: Detected failure in running test, will attempt to retry test: 1 times
returncode_int_match/879b33f7: Run - 1/1
returncode_int_match/879b33f7: Running Test via command: bash returncode_int_match_build.sh
returncode_int_match/879b33f7: failed to submit job with returncode: 128
returncode_int_match/879b33f7: Test completed in 0.014265 seconds with returncode: 128
returncode_int_match/879b33f7: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/879b33f7/returncode_int_match.out
returncode_int_match/879b33f7: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/returncode_int_match/879b33f7/returncode_int_match.err
returncode_int_match/879b33f7: Checking returncode - 128 is matched in list [128]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ returncode_list_mismatc │ generic.local.bash │ FAIL   │ 2          │ 0.015   │
│ h/b70d4e27              │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_fail/c3792104     │ generic.local.bash │ FAIL   │ 1          │ 0.014   │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ returncode_int_match/87 │ generic.local.bash │ PASS   │ 128        │ 0.014   │
│ 9b33f7                  │                    │        │            │         │
├─────────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_pass/d4e668ef     │ generic.local.bash │ PASS   │ 1          │ 0.015   │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 2/4 Percentage: 50.000%
Failed Tests: 2/4 Percentage: 50.000%


Adding 4 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_qeue1gzo.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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:09                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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/e7b50 │        │ local.ba │          │       │       │ by       │ ocs/che │
│ 826      │        │ 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/d3fb6 │        │ local.ba │          │       │       │ exit 1   │ ocs/che │
│ c56      │        │ 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/ │
│ /78c8c98 │        │          │          │       │       │ failed   │ readthe │
│ e        │        │          │          │       │       │ 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/191 │        │ sh       │          │       │       │ returnco │ ckouts/ │
│ 77bb4    │        │          │          │       │       │ 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/e7b50826: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/e7b50826
exit1_pass/d3fb6c56: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/d3fb6c56
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
exit1_fail/e7b50826 does not have any dependencies adding test to queue
exit1_pass/d3fb6c56 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder             ┃
┡━━━━━━━━━━━━━━━━━━━━━┩
│ exit1_fail/e7b50826 │
│ exit1_pass/d3fb6c56 │
└─────────────────────┘
exit1_fail/e7b50826: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/e7b50826/stage
exit1_fail/e7b50826: Running Test via command: bash exit1_fail_build.sh
exit1_fail/e7b50826: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_fail/e7b50826 ─────────────────────

exit1_fail/e7b50826: Detected failure in running test, will attempt to retry test: 1 times
exit1_fail/e7b50826: Run - 1/1
exit1_fail/e7b50826: Running Test via command: bash exit1_fail_build.sh
exit1_fail/e7b50826: failed to submit job with returncode: 1
exit1_fail/e7b50826: Test completed in 0.014746 seconds with returncode: 1
exit1_fail/e7b50826: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/e7b50826/exit1_fail.out
exit1_fail/e7b50826: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_fail/e7b50826/exit1_fail.err
exit1_pass/d3fb6c56: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/d3fb6c56/stage
exit1_pass/d3fb6c56: Running Test via command: bash exit1_pass_build.sh
exit1_pass/d3fb6c56: failed to submit job with returncode: 1
──────────────────── Error Message for exit1_pass/d3fb6c56 ─────────────────────

exit1_pass/d3fb6c56: Detected failure in running test, will attempt to retry test: 1 times
exit1_pass/d3fb6c56: Run - 1/1
exit1_pass/d3fb6c56: Running Test via command: bash exit1_pass_build.sh
exit1_pass/d3fb6c56: failed to submit job with returncode: 1
exit1_pass/d3fb6c56: Test completed in 0.014185 seconds with returncode: 1
exit1_pass/d3fb6c56: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/d3fb6c56/exit1_pass.out
exit1_pass/d3fb6c56: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/pass_returncode/exit1_pass/d3fb6c56/exit1_pass.err
exit1_pass/d3fb6c56: Checking returncode - 1 is matched in list [1]
                                Test Summary                                
┏━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder             ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ exit1_fail/e7b50826 │ generic.local.bash │ FAIL   │ 1          │ 0.015   │
├─────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ exit1_pass/d3fb6c56 │ generic.local.bash │ PASS   │ 1          │ 0.014   │
└─────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/2 Percentage: 50.000%
Failed Tests: 1/2 Percentage: 50.000%


Adding 2 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_guwxmxq4.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 ...]]
                                            [--limit LIMIT]
                                            [--max-jobs MAX_JOBS]
                                            [--remove-stagedir]
                                            [--rebuild REBUILD]
                                            [--retry RETRY] [-s {parse,build}]
                                            [--testdir TESTDIR]
                                            [--timeout TIMEOUT]
                                            [--save-profile SAVE_PROFILE]
                                            [--profile PROFILE]
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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:10                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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 │
│ 4f5700c  │        │ 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/14f5700c: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/14f5700c
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/14f5700c does not have any dependencies adding test to queue
 Builders Eligible to Run  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                 ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ variables_bash/14f5700c │
└─────────────────────────┘
variables_bash/14f5700c: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/14f5700c/stage
variables_bash/14f5700c: Running Test via command: bash variables_bash_build.sh
variables_bash/14f5700c: Test completed in 0.009655 seconds with returncode: 0
variables_bash/14f5700c: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/14f5700c/variables_bash.out
variables_bash/14f5700c: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/14f5700c/variables_bash.err
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ variables_bash/14f5700c │ generic.local.bash │ PASS   │ 0          │ 0.010   │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%


Adding 1 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_khlo9yeh.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/tmpjcb9dx2w/var/rerun.json all other options will be ignored.
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:11                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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 │
│ 41e90a4  │        │ 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/141e90a4: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/141e90a4
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/141e90a4 does not have any dependencies adding test to queue
 Builders Eligible to Run  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                 ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ variables_bash/141e90a4 │
└─────────────────────────┘
variables_bash/141e90a4: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/141e90a4/stage
variables_bash/141e90a4: Running Test via command: bash variables_bash_build.sh
variables_bash/141e90a4: Test completed in 0.009529 seconds with returncode: 0
variables_bash/141e90a4: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/141e90a4/variables_bash.out
variables_bash/141e90a4: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/141e90a4/variables_bash.err
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ variables_bash/141e90a4 │ generic.local.bash │ PASS   │ 0          │ 0.010   │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%


Adding 1 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_tm36f1je.log

If you pass additional options with --rerun it will simply be ignored. In this case -t python --stage=build will not be read by buildtest instead we will rerun same command.

buildtest build --rerun -t python --stage=build
$ buildtest build --rerun -t python --stage=build
Reading content of rerun file /tmp/tmpjcb9dx2w/var/rerun.json all other options will be ignored.
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:12                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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 │
│ 1c7fbeb  │        │ 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/71c7fbeb: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/71c7fbeb
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/71c7fbeb does not have any dependencies adding test to queue
 Builders Eligible to Run  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder                 ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ variables_bash/71c7fbeb │
└─────────────────────────┘
variables_bash/71c7fbeb: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/71c7fbeb/stage
variables_bash/71c7fbeb: Running Test via command: bash variables_bash_build.sh
variables_bash/71c7fbeb: Test completed in 0.010044 seconds with returncode: 0
variables_bash/71c7fbeb: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/71c7fbeb/variables_bash.out
variables_bash/71c7fbeb: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/vars/variables_bash/71c7fbeb/variables_bash.err
                                  Test Summary                                  
┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder                 ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ variables_bash/71c7fbeb │ generic.local.bash │ PASS   │ 0          │ 0.010   │
└─────────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%


Adding 1 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_697b5uis.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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:12                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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/f9 │ script │ generic. │ None     │ None  │ None  │ sleep 2  │ /home/d │
│ 142f37   │        │ 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/f9142f37: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/sleep/sleep/f9142f37
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
sleep/f9142f37 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━┓
┃ Builder        ┃
┡━━━━━━━━━━━━━━━━┩
│ sleep/f9142f37 │
└────────────────┘
sleep/f9142f37: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/sleep/sleep/f9142f37/stage
sleep/f9142f37: Running Test via command: bash sleep_build.sh
sleep/f9142f37: failed to submit job with returncode: -9
─────────────────────── Error Message for sleep/f9142f37 ───────────────────────

sleep/f9142f37: Detected failure in running test, will attempt to retry test: 1 times
sleep/f9142f37: Run - 1/1
sleep/f9142f37: Running Test via command: bash sleep_build.sh
sleep/f9142f37: failed to submit job with returncode: -9
sleep/f9142f37: Test completed in 2.011053 seconds with returncode: -9
sleep/f9142f37: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/sleep/sleep/f9142f37/sleep.out
sleep/f9142f37: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/sleep/sleep/f9142f37/sleep.err
                             Test Summary                              
┏━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder        ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ sleep/f9142f37 │ generic.local.bash │ FAIL   │ -9         │ 2.011   │
└────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 0/1 Percentage: 0.000%
Failed Tests: 1/1 Percentage: 100.000%


Adding 1 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_v7m8rr8q.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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:15                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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/ac │ script │ generic. │ None     │ None  │ None  │ sleep 2  │ /home/d │
│ 1a094a   │        │ 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/ac1a094a: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/sleep/sleep/ac1a094a
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
sleep/ac1a094a does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━┓
┃ Builder        ┃
┡━━━━━━━━━━━━━━━━┩
│ sleep/ac1a094a │
└────────────────┘
sleep/ac1a094a: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/sleep/sleep/ac1a094a/stage
sleep/ac1a094a: Running Test via command: bash sleep_build.sh
sleep/ac1a094a: Test completed in 2.019846 seconds with returncode: 0
sleep/ac1a094a: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/sleep/sleep/ac1a094a/sleep.out
sleep/ac1a094a: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/sleep/sleep/ac1a094a/sleep.err
                             Test Summary                              
┏━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder        ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ sleep/ac1a094a │ generic.local.bash │ PASS   │ 0          │ 2.020   │
└────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%


Adding 1 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_xj3vkhn7.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/tmpjcb9dx2w/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/tmpjcb9dx2w/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       #root: ["$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     # start of executor configuration
  49     executors:
  50       # 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.
  51       local:
  52         bash:
  53           description: submit jobs on local machine using bash shell
  54           shell: bash
  55         sh:
  56           description: submit jobs on local machine using sh shell
  57           shell: sh
  58         csh:
  59           description: submit jobs on local machine using csh shell
  60           shell: csh
  61         zsh:
  62           description: submit jobs on local machine using zsh shell
  63           shell: zsh
  64     # specify compiler declaration
  65     compilers:
  66       compiler:
  67         # declaration of all gcc compilers
  68         gcc:
  69           # name of compiler
  70           builtin_gcc:
  71             cc: gcc
  72             fc: gfortran
  73             cxx: g++
  74     # specify CDASH configuration when using 'buildtest cdash upload'
  75     cdash:
  76       # CDASH server
  77       url: https://my.cdash.org/
  78       # name of CDASH project where to push test reports
  79       project: buildtest
  80       # specify the site name which should generally by name of your HPC system. This is used by CDASH to group test results by site
  81       site: generic
  82       # specify the build name which is used to group test results by build name
  83       buildname: tutorials
  84

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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:18                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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                                                   ║
╚══════════════════════════════════════════════════════════════════════════════╝
                            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 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/c1a │        │ local.ba │          │       │       │ World    │ ocs/che │
│ e4e33    │        │ 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/813e │        │ local.ba │          │       │       │ e circle │ ocs/che │
│ 3c6d     │        │ 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/c1ae4e33: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/c1ae4e33
circle_area/813e3c6d: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/813e3c6d
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
circle_area/813e3c6d does not have any dependencies adding test to queue
python_hello/c1ae4e33 does not have any dependencies adding test to queue
Builders Eligible to Run 
┏━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder               ┃
┡━━━━━━━━━━━━━━━━━━━━━━━┩
│ circle_area/813e3c6d  │
│ python_hello/c1ae4e33 │
└───────────────────────┘
circle_area/813e3c6d: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/813e3c6d/stage
circle_area/813e3c6d: Running Test via command: bash circle_area_build.sh
circle_area/813e3c6d: Test completed in 0.031635 seconds with returncode: 0
circle_area/813e3c6d: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/813e3c6d/circle_area.out
circle_area/813e3c6d: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-shell/circle_area/813e3c6d/circle_area.err
python_hello/c1ae4e33: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/c1ae4e33/stage
python_hello/c1ae4e33: Running Test via command: bash python_hello_build.sh
python_hello/c1ae4e33: Test completed in 0.029861 seconds with returncode: 0
python_hello/c1ae4e33: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/c1ae4e33/python_hello.out
python_hello/c1ae4e33: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/python-hello/python_hello/c1ae4e33/python_hello.err
                                 Test Summary                                 
┏━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder               ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ circle_area/813e3c6d  │ generic.local.bash │ PASS   │ 0          │ 0.032   │
├───────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ python_hello/c1ae4e33 │ generic.local.bash │ PASS   │ 0          │ 0.030   │
└───────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 2/2 Percentage: 100.000%
Failed Tests: 0/2 Percentage: 0.000%


Adding 2 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_g9k3143t.log

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-23444606-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2024/02/14 17:18:19                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.7                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.8.18                                                   │
│ Configuration File: /tmp/tmpjcb9dx2w/config.yml                              │
│ Test Directory:     /tmp/tmpjcb9dx2w/var/tests                               │
│ Report File:        /tmp/tmpjcb9dx2w/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 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/d8f2 │        │ local.ba │          │       │       │ world    │ ocs/che │
│ b427     │        │ 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/66f6 │        │ local.ba │          │       │       │ world    │ ocs/che │
│ eef7     │        │ 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/dd2d │        │ local.ba │          │       │       │ world    │ ocs/che │
│ a8f2     │        │ 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/7831 │        │ local.ba │          │       │       │ world    │ ocs/che │
│ db13     │        │ 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/ddf0 │        │ local.ba │          │       │       │ world    │ ocs/che │
│ 10d1     │        │ 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/d8f2b427: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/d8f2b427
hello_world/66f6eef7: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/66f6eef7
hello_world/dd2da8f2: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/dd2da8f2
hello_world/7831db13: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/7831db13
hello_world/ddf010d1: Creating Test Directory: /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/ddf010d1
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
hello_world/ddf010d1 does not have any dependencies adding test to queue
hello_world/66f6eef7 does not have any dependencies adding test to queue
hello_world/7831db13 does not have any dependencies adding test to queue
hello_world/d8f2b427 does not have any dependencies adding test to queue
hello_world/dd2da8f2 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder              ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ hello_world/ddf010d1 │
│ hello_world/66f6eef7 │
└──────────────────────┘
hello_world/ddf010d1: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/ddf010d1/stage
hello_world/ddf010d1: Running Test via command: bash hello_world_build.sh
hello_world/ddf010d1: Test completed in 0.00601 seconds with returncode: 0
hello_world/ddf010d1: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/ddf010d1/hello_world.out
hello_world/ddf010d1: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/ddf010d1/hello_world.err
hello_world/66f6eef7: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/66f6eef7/stage
hello_world/66f6eef7: Running Test via command: bash hello_world_build.sh
hello_world/66f6eef7: Test completed in 0.005762 seconds with returncode: 0
hello_world/66f6eef7: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/66f6eef7/hello_world.out
hello_world/66f6eef7: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/66f6eef7/hello_world.err
───────────────────────────────── Iteration 2 ──────────────────────────────────
hello_world/7831db13 does not have any dependencies adding test to queue
hello_world/d8f2b427 does not have any dependencies adding test to queue
hello_world/dd2da8f2 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder              ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ hello_world/7831db13 │
│ hello_world/d8f2b427 │
└──────────────────────┘
hello_world/7831db13: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/7831db13/stage
hello_world/7831db13: Running Test via command: bash hello_world_build.sh
hello_world/7831db13: Test completed in 0.005507 seconds with returncode: 0
hello_world/7831db13: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/7831db13/hello_world.out
hello_world/7831db13: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/7831db13/hello_world.err
hello_world/d8f2b427: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/d8f2b427/stage
hello_world/d8f2b427: Running Test via command: bash hello_world_build.sh
hello_world/d8f2b427: Test completed in 0.005532 seconds with returncode: 0
hello_world/d8f2b427: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/d8f2b427/hello_world.out
hello_world/d8f2b427: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/d8f2b427/hello_world.err
───────────────────────────────── Iteration 3 ──────────────────────────────────
hello_world/dd2da8f2 does not have any dependencies adding test to queue
Builders Eligible to Run
┏━━━━━━━━━━━━━━━━━━━━━━┓
┃ Builder              ┃
┡━━━━━━━━━━━━━━━━━━━━━━┩
│ hello_world/dd2da8f2 │
└──────────────────────┘
hello_world/dd2da8f2: Current Working Directory : /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/dd2da8f2/stage
hello_world/dd2da8f2: Running Test via command: bash hello_world_build.sh
hello_world/dd2da8f2: Test completed in 0.005642 seconds with returncode: 0
hello_world/dd2da8f2: Writing output file -  /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/dd2da8f2/hello_world.out
hello_world/dd2da8f2: Writing error file - /tmp/tmpjcb9dx2w/var/tests/generic.local.bash/hello_world/hello_world/dd2da8f2/hello_world.err
                                Test Summary                                 
┏━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃ builder              ┃ executor           ┃ status ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ hello_world/dd2da8f2 │ generic.local.bash │ PASS   │ 0          │ 0.006   │
├──────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ hello_world/ddf010d1 │ generic.local.bash │ PASS   │ 0          │ 0.006   │
├──────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ hello_world/d8f2b427 │ generic.local.bash │ PASS   │ 0          │ 0.006   │
├──────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ hello_world/66f6eef7 │ generic.local.bash │ PASS   │ 0          │ 0.006   │
├──────────────────────┼────────────────────┼────────┼────────────┼─────────┤
│ hello_world/7831db13 │ generic.local.bash │ PASS   │ 0          │ 0.006   │
└──────────────────────┴────────────────────┴────────┴────────────┴─────────┘



Passed Tests: 5/5 Percentage: 100.000%
Failed Tests: 0/5 Percentage: 0.000%


Adding 5 test results to /tmp/tmpjcb9dx2w/var/report.json
Writing Logfile to /tmp/tmpjcb9dx2w/var/logs/buildtest_316aj550.log