Building Test via buildtest (buildtest build)

This 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.

Once you install buildtest, you should find the buildtest command in your $PATH. You can check the path to buildtest command by running:

$ which buildtest

If you don’t see buildtest go back and install buildtest.

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]
                                            [-e EXECUTOR] [-t TAGS] [--rerun]
                                            [-f FILTER] [--helpfilter]
                                            [-et {local,batch}]
                                            [--module-purge] [-m MODULES]
                                            [-u UNLOAD_MODULES]
                                            [--account ACCOUNT]
                                            [--disable-executor-check]
                                            [--remove-stagedir]
                                            [--maxpendtime MAXPENDTIME]
                                            [--pollinterval POLLINTERVAL]
                                            [--procs PROCS [PROCS ...]]
                                            [--nodes NODES [NODES ...]]
                                            [--rebuild REBUILD]
                                            [--retry RETRY] [-s {parse,build}]
                                            [--testdir TESTDIR]
                                            [--timeout TIMEOUT]

optional arguments:
  -h, --help            show this help message and exit

select:
  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.
  -e EXECUTOR, --executor EXECUTOR
                        Discover buildspecs by executor name 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,key2=val2
  --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

  --disable-executor-check
                        Disable executor check during configuration check. By
                        default these checks are enforced for Local, Slurm,
                        PBS, LSF, and Cobalt Executor.
  --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

Building a Test

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
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:22:08                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/vars.yml: VALID
Total builder objects created: 1
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variabl… │ script │ generic… │ None     │ None  │ None  │ Declare  │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ variabl… │         │
│          │        │          │          │       │       │ in bash  │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
variables_bash/c4a0d297: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/c4a0d297
variables_bash/c4a0d297: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/c4a0d297/stage
variables_bash/c4a0d297: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/c4a0d297/variables_bash_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/c4a0d297 does not have any dependencies adding test to queue
variables_bash/c4a0d297: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/c4a0d297/stage
variables_bash/c4a0d297: Running Test via command: bash --norc --noprofile -eo pipefail variables_bash_build.sh
variables_bash/c4a0d297: Test completed in 0.010404 seconds
variables_bash/c4a0d297: Test completed with returncode: 0
variables_bash/c4a0d297: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/c4a0d297/variables_bash.out
variables_bash/c4a0d297: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/c4a0d297/variables_bash.err
In this iteration we are going to run the following tests: [variables_bash/c4a0d297]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ variables_ba │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.010404 │
│ sh/c4a0d297  │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 1 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_gqdtcr82.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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:17                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/g… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/g… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/g… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/g… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/general_tests/configuration/systemd-default-target.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/general_tests/configuration/disk_usage.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/general_tests/configuration/ulimits.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/general_tests/configuration/kernel_state.yml: VALID
Total builder objects created: 9
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ systemd… │ script │ generic… │ None     │ None  │ None  │ check if │ /home/… │
│          │        │          │          │       │       │ default  │         │
│          │        │          │          │       │       │ target   │         │
│          │        │          │          │       │       │ is       │         │
│          │        │          │          │       │       │ multi-u… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ root_di… │ script │ generic… │ None     │ None  │ None  │ Check    │ /home/… │
│          │        │          │          │       │       │ root     │         │
│          │        │          │          │       │       │ disk     │         │
│          │        │          │          │       │       │ usage    │         │
│          │        │          │          │       │       │ and      │         │
│          │        │          │          │       │       │ report   │         │
│          │        │          │          │       │       │ if it    │         │
│          │        │          │          │       │       │ exceeds  │         │
│          │        │          │          │       │       │ thresho… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_… │ script │ generic… │ None     │ None  │ None  │ Check if │ /home/… │
│          │        │          │          │       │       │ file     │         │
│          │        │          │          │       │       │ lock is  │         │
│          │        │          │          │       │       │ set to   │         │
│          │        │          │          │       │       │ unlimit… │         │
│          │        │          │          │       │       │ in       │         │
│          │        │          │          │       │       │ ulimits  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_… │ script │ generic… │ None     │ None  │ None  │ Check if │ /home/… │
│          │        │          │          │       │       │ cputime  │         │
│          │        │          │          │       │       │ is set   │         │
│          │        │          │          │       │       │ to       │         │
│          │        │          │          │       │       │ unlimit… │         │
│          │        │          │          │       │       │ in       │         │
│          │        │          │          │       │       │ ulimits  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_… │ script │ generic… │ None     │ None  │ None  │ Check if │ /home/… │
│          │        │          │          │       │       │ stack    │         │
│          │        │          │          │       │       │ size is  │         │
│          │        │          │          │       │       │ set to   │         │
│          │        │          │          │       │       │ unlimit… │         │
│          │        │          │          │       │       │ in       │         │
│          │        │          │          │       │       │ ulimits  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_… │ script │ generic… │ None     │ None  │ None  │ Check    │ /home/… │
│          │        │          │          │       │       │ virtual  │         │
│          │        │          │          │       │       │ memory   │         │
│          │        │          │          │       │       │ size and │         │
│          │        │          │          │       │       │ check if │         │
│          │        │          │          │       │       │ its set  │         │
│          │        │          │          │       │       │ to       │         │
│          │        │          │          │       │       │ unlimit… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_… │ script │ generic… │ None     │ None  │ None  │ Check if │ /home/… │
│          │        │          │          │       │       │ open     │         │
│          │        │          │          │       │       │ file     │         │
│          │        │          │          │       │       │ descrip… │         │
│          │        │          │          │       │       │ limit is │         │
│          │        │          │          │       │       │ set to   │         │
│          │        │          │          │       │       │ 4096     │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_… │ script │ generic… │ None     │ None  │ None  │ Check    │ /home/… │
│          │        │          │          │       │       │ max      │         │
│          │        │          │          │       │       │ number   │         │
│          │        │          │          │       │       │ of user  │         │
│          │        │          │          │       │       │ process  │         │
│          │        │          │          │       │       │ limit is │         │
│          │        │          │          │       │       │ set to   │         │
│          │        │          │          │       │       │ 2048     │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ kernel_… │ script │ generic… │ None     │ None  │ None  │ Retrieve │ /home/… │
│          │        │          │          │       │       │ Kernel   │         │
│          │        │          │          │       │       │ Swap     │         │
│          │        │          │          │       │       │ Usage    │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
systemd_default_target/32de2907: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/32de2907
systemd_default_target/32de2907: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/32de2907/stage
systemd_default_target/32de2907: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/32de2907/systemd_default_target_build.sh
root_disk_usage/03ae328c: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/03ae328c
root_disk_usage/03ae328c: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/03ae328c/stage
root_disk_usage/03ae328c: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/03ae328c/root_disk_usage_build.sh
ulimit_filelock_unlimited/82ec09f7: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/82ec09f7
ulimit_filelock_unlimited/82ec09f7: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/82ec09f7/stage
ulimit_filelock_unlimited/82ec09f7: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/82ec09f7/ulimit_filelock_unlimited_build.sh
ulimit_cputime_unlimited/4e576f80: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/4e576f80
ulimit_cputime_unlimited/4e576f80: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/4e576f80/stage
ulimit_cputime_unlimited/4e576f80: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/4e576f80/ulimit_cputime_unlimited_build.sh
ulimit_stacksize_unlimited/548e36c3: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/548e36c3
ulimit_stacksize_unlimited/548e36c3: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/548e36c3/stage
ulimit_stacksize_unlimited/548e36c3: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/548e36c3/ulimit_stacksize_unlimited_build.sh
ulimit_vmsize_unlimited/d7296a6e: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/d7296a6e
ulimit_vmsize_unlimited/d7296a6e: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/d7296a6e/stage
ulimit_vmsize_unlimited/d7296a6e: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/d7296a6e/ulimit_vmsize_unlimited_build.sh
ulimit_filedescriptor_4096/7084bec8: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/7084bec8
ulimit_filedescriptor_4096/7084bec8: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/7084bec8/stage
ulimit_filedescriptor_4096/7084bec8: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/7084bec8/ulimit_filedescriptor_4096_build.sh
ulimit_max_user_process_2048/7e1118c9: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/7e1118c9
ulimit_max_user_process_2048/7e1118c9: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/7e1118c9/stage
ulimit_max_user_process_2048/7e1118c9: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/7e1118c9/ulimit_max_user_process_2048_build.sh
kernel_swapusage/3a3cf543: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3a3cf543
kernel_swapusage/3a3cf543: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3a3cf543/stage
kernel_swapusage/3a3cf543: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3a3cf543/kernel_swapusage_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
systemd_default_target/32de2907 does not have any dependencies adding test to queue
ulimit_stacksize_unlimited/548e36c3 does not have any dependencies adding test to queue
ulimit_filelock_unlimited/82ec09f7 does not have any dependencies adding test to queue
ulimit_max_user_process_2048/7e1118c9 does not have any dependencies adding test to queue
kernel_swapusage/3a3cf543 does not have any dependencies adding test to queue
ulimit_filedescriptor_4096/7084bec8 does not have any dependencies adding test to queue
ulimit_cputime_unlimited/4e576f80 does not have any dependencies adding test to queue
root_disk_usage/03ae328c does not have any dependencies adding test to queue
ulimit_vmsize_unlimited/d7296a6e does not have any dependencies adding test to queue
systemd_default_target/32de2907: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/32de2907/stage
systemd_default_target/32de2907: Running Test via command: bash --norc --noprofile -eo pipefail systemd_default_target_build.sh
systemd_default_target/32de2907: Test completed in 0.373529 seconds
systemd_default_target/32de2907: Test completed with returncode: 1
systemd_default_target/32de2907: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/32de2907/systemd_default_target.out
systemd_default_target/32de2907: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/32de2907/systemd_default_target.err
ulimit_stacksize_unlimited/548e36c3: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/548e36c3/stage
ulimit_stacksize_unlimited/548e36c3: Running Test via command: bash --norc --noprofile -eo pipefail ulimit_stacksize_unlimited_build.sh
ulimit_stacksize_unlimited/548e36c3: Test completed in 0.006009 seconds
ulimit_stacksize_unlimited/548e36c3: Test completed with returncode: 0
ulimit_stacksize_unlimited/548e36c3: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/548e36c3/ulimit_stacksize_unlimited.out
ulimit_stacksize_unlimited/548e36c3: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/548e36c3/ulimit_stacksize_unlimited.err
ulimit_stacksize_unlimited/548e36c3: performing regular expression - '^unlimited$' on file: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/548e36c3/ulimit_stacksize_unlimited.out
ulimit_stacksize_unlimited/548e36c3: Regular Expression Match - Failed!
kernel_swapusage/3a3cf543: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3a3cf543/stage
kernel_swapusage/3a3cf543: Running Test via command: bash --norc --noprofile -eo pipefail kernel_swapusage_build.sh
kernel_swapusage/3a3cf543: Test completed in 0.114281 seconds
kernel_swapusage/3a3cf543: Test completed with returncode: 255
kernel_swapusage/3a3cf543: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3a3cf543/kernel_swapusage.out
kernel_swapusage/3a3cf543: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3a3cf543/kernel_swapusage.err
ulimit_max_user_process_2048/7e1118c9: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/7e1118c9/stage
ulimit_max_user_process_2048/7e1118c9: Running Test via command: bash --norc --noprofile -eo pipefail ulimit_max_user_process_2048_build.sh
ulimit_max_user_process_2048/7e1118c9: Test completed in 0.006189 seconds
ulimit_max_user_process_2048/7e1118c9: Test completed with returncode: 0
ulimit_max_user_process_2048/7e1118c9: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/7e1118c9/ulimit_max_user_process_2048.out
ulimit_max_user_process_2048/7e1118c9: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/7e1118c9/ulimit_max_user_process_2048.err
ulimit_max_user_process_2048/7e1118c9: performing regular expression - '^2048$' on file: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/7e1118c9/ulimit_max_user_process_2048.out
ulimit_max_user_process_2048/7e1118c9: Regular Expression Match - Failed!
ulimit_filelock_unlimited/82ec09f7: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/82ec09f7/stage
ulimit_filelock_unlimited/82ec09f7: Running Test via command: bash --norc --noprofile -eo pipefail ulimit_filelock_unlimited_build.sh
ulimit_filelock_unlimited/82ec09f7: Test completed in 0.005699 seconds
ulimit_filelock_unlimited/82ec09f7: Test completed with returncode: 0
ulimit_filelock_unlimited/82ec09f7: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/82ec09f7/ulimit_filelock_unlimited.out
ulimit_filelock_unlimited/82ec09f7: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/82ec09f7/ulimit_filelock_unlimited.err
ulimit_filelock_unlimited/82ec09f7: performing regular expression - '^unlimited$' on file: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/82ec09f7/ulimit_filelock_unlimited.out
ulimit_filelock_unlimited/82ec09f7: Regular Expression Match - Success!
ulimit_filedescriptor_4096/7084bec8: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/7084bec8/stage
ulimit_filedescriptor_4096/7084bec8: Running Test via command: bash --norc --noprofile -eo pipefail ulimit_filedescriptor_4096_build.sh
ulimit_filedescriptor_4096/7084bec8: Test completed in 0.005674 seconds
ulimit_filedescriptor_4096/7084bec8: Test completed with returncode: 0
ulimit_filedescriptor_4096/7084bec8: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/7084bec8/ulimit_filedescriptor_4096.out
ulimit_filedescriptor_4096/7084bec8: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/7084bec8/ulimit_filedescriptor_4096.err
ulimit_filedescriptor_4096/7084bec8: performing regular expression - '^4096$' on file: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/7084bec8/ulimit_filedescriptor_4096.out
ulimit_filedescriptor_4096/7084bec8: Regular Expression Match - Failed!
ulimit_cputime_unlimited/4e576f80: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/4e576f80/stage
ulimit_cputime_unlimited/4e576f80: Running Test via command: bash --norc --noprofile -eo pipefail ulimit_cputime_unlimited_build.sh
ulimit_cputime_unlimited/4e576f80: Test completed in 0.005657 seconds
ulimit_cputime_unlimited/4e576f80: Test completed with returncode: 0
ulimit_cputime_unlimited/4e576f80: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/4e576f80/ulimit_cputime_unlimited.out
ulimit_cputime_unlimited/4e576f80: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/4e576f80/ulimit_cputime_unlimited.err
ulimit_cputime_unlimited/4e576f80: performing regular expression - '^unlimited$' on file: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/4e576f80/ulimit_cputime_unlimited.out
ulimit_cputime_unlimited/4e576f80: Regular Expression Match - Success!
root_disk_usage/03ae328c: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/03ae328c/stage
root_disk_usage/03ae328c: Running Test via command: bash --norc --noprofile -eo pipefail root_disk_usage_build.sh
root_disk_usage/03ae328c: Test completed in 0.010332 seconds
root_disk_usage/03ae328c: Test completed with returncode: 0
root_disk_usage/03ae328c: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/03ae328c/root_disk_usage.out
root_disk_usage/03ae328c: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/03ae328c/root_disk_usage.err
ulimit_vmsize_unlimited/d7296a6e: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/d7296a6e/stage
ulimit_vmsize_unlimited/d7296a6e: Running Test via command: bash --norc --noprofile -eo pipefail ulimit_vmsize_unlimited_build.sh
ulimit_vmsize_unlimited/d7296a6e: Test completed in 0.005878 seconds
ulimit_vmsize_unlimited/d7296a6e: Test completed with returncode: 0
ulimit_vmsize_unlimited/d7296a6e: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/d7296a6e/ulimit_vmsize_unlimited.out
ulimit_vmsize_unlimited/d7296a6e: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/d7296a6e/ulimit_vmsize_unlimited.err
ulimit_vmsize_unlimited/d7296a6e: performing regular expression - '^unlimited$' on file: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/d7296a6e/ulimit_vmsize_unlimited.out
ulimit_vmsize_unlimited/d7296a6e: Regular Expression Match - Success!
In this iteration we are going to run the following tests: [systemd_default_target/32de2907, ulimit_stacksize_unlimited/548e36c3, kernel_swapusage/3a3cf543, ulimit_max_user_process_2048/7e1118c9, ulimit_filelock_unlimited/82ec09f7, ulimit_filedescriptor_4096/7084bec8, ulimit_cputime_unlimited/4e576f80, root_disk_usage/03ae328c, ulimit_vmsize_unlimited/d7296a6e]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ ulimit_filed │ generic.loc… │ FAIL   │ False False   │ 0          │ 0.005674 │
│ escriptor_40 │              │        │ False         │            │          │
│ 96/7084bec8  │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ ulimit_stack │ generic.loc… │ FAIL   │ False False   │ 0          │ 0.006009 │
│ size_unlimit │              │        │ False         │            │          │
│ ed/548e36c3  │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ systemd_defa │ generic.loc… │ FAIL   │ N/A N/A N/A   │ 1          │ 0.373529 │
│ ult_target/3 │              │        │               │            │          │
│ 2de2907      │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ ulimit_vmsiz │ generic.loc… │ PASS   │ False True    │ 0          │ 0.005878 │
│ e_unlimited/ │              │        │ False         │            │          │
│ d7296a6e     │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ kernel_swapu │ generic.loc… │ FAIL   │ N/A N/A N/A   │ 255        │ 0.114281 │
│ sage/3a3cf54 │              │        │               │            │          │
│ 3            │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ ulimit_max_u │ generic.loc… │ FAIL   │ False False   │ 0          │ 0.006189 │
│ ser_process_ │              │        │ False         │            │          │
│ 2048/7e1118c │              │        │               │            │          │
│ 9            │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ ulimit_cputi │ generic.loc… │ PASS   │ False True    │ 0          │ 0.005657 │
│ me_unlimited │              │        │ False         │            │          │
│ /4e576f80    │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ root_disk_us │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.010332 │
│ age/03ae328c │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ ulimit_filel │ generic.loc… │ PASS   │ False True    │ 0          │ 0.005699 │
│ ock_unlimite │              │        │ False         │            │          │
│ d/82ec09f7   │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 9 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_u6jx1c88.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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:18                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/g… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/g… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/g… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/g… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/general_tests/configuration/kernel_state.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/general_tests/configuration/disk_usage.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/general_tests/configuration/ulimits.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/general_tests/configuration/systemd-default-target.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/vars.yml: VALID
Total builder objects created: 10
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ kernel_… │ script │ generic… │ None     │ None  │ None  │ Retrieve │ /home/… │
│          │        │          │          │       │       │ Kernel   │         │
│          │        │          │          │       │       │ Swap     │         │
│          │        │          │          │       │       │ Usage    │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ root_di… │ script │ generic… │ None     │ None  │ None  │ Check    │ /home/… │
│          │        │          │          │       │       │ root     │         │
│          │        │          │          │       │       │ disk     │         │
│          │        │          │          │       │       │ usage    │         │
│          │        │          │          │       │       │ and      │         │
│          │        │          │          │       │       │ report   │         │
│          │        │          │          │       │       │ if it    │         │
│          │        │          │          │       │       │ exceeds  │         │
│          │        │          │          │       │       │ thresho… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_… │ script │ generic… │ None     │ None  │ None  │ Check if │ /home/… │
│          │        │          │          │       │       │ file     │         │
│          │        │          │          │       │       │ lock is  │         │
│          │        │          │          │       │       │ set to   │         │
│          │        │          │          │       │       │ unlimit… │         │
│          │        │          │          │       │       │ in       │         │
│          │        │          │          │       │       │ ulimits  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_… │ script │ generic… │ None     │ None  │ None  │ Check if │ /home/… │
│          │        │          │          │       │       │ cputime  │         │
│          │        │          │          │       │       │ is set   │         │
│          │        │          │          │       │       │ to       │         │
│          │        │          │          │       │       │ unlimit… │         │
│          │        │          │          │       │       │ in       │         │
│          │        │          │          │       │       │ ulimits  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_… │ script │ generic… │ None     │ None  │ None  │ Check if │ /home/… │
│          │        │          │          │       │       │ stack    │         │
│          │        │          │          │       │       │ size is  │         │
│          │        │          │          │       │       │ set to   │         │
│          │        │          │          │       │       │ unlimit… │         │
│          │        │          │          │       │       │ in       │         │
│          │        │          │          │       │       │ ulimits  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_… │ script │ generic… │ None     │ None  │ None  │ Check    │ /home/… │
│          │        │          │          │       │       │ virtual  │         │
│          │        │          │          │       │       │ memory   │         │
│          │        │          │          │       │       │ size and │         │
│          │        │          │          │       │       │ check if │         │
│          │        │          │          │       │       │ its set  │         │
│          │        │          │          │       │       │ to       │         │
│          │        │          │          │       │       │ unlimit… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_… │ script │ generic… │ None     │ None  │ None  │ Check if │ /home/… │
│          │        │          │          │       │       │ open     │         │
│          │        │          │          │       │       │ file     │         │
│          │        │          │          │       │       │ descrip… │         │
│          │        │          │          │       │       │ limit is │         │
│          │        │          │          │       │       │ set to   │         │
│          │        │          │          │       │       │ 4096     │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ ulimit_… │ script │ generic… │ None     │ None  │ None  │ Check    │ /home/… │
│          │        │          │          │       │       │ max      │         │
│          │        │          │          │       │       │ number   │         │
│          │        │          │          │       │       │ of user  │         │
│          │        │          │          │       │       │ process  │         │
│          │        │          │          │       │       │ limit is │         │
│          │        │          │          │       │       │ set to   │         │
│          │        │          │          │       │       │ 2048     │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ systemd… │ script │ generic… │ None     │ None  │ None  │ check if │ /home/… │
│          │        │          │          │       │       │ default  │         │
│          │        │          │          │       │       │ target   │         │
│          │        │          │          │       │       │ is       │         │
│          │        │          │          │       │       │ multi-u… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ variabl… │ script │ generic… │ None     │ None  │ None  │ Declare  │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ variabl… │         │
│          │        │          │          │       │       │ in bash  │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
kernel_swapusage/3990f55b: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3990f55b
kernel_swapusage/3990f55b: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3990f55b/stage
kernel_swapusage/3990f55b: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3990f55b/kernel_swapusage_build.sh
root_disk_usage/15fbae93: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/15fbae93
root_disk_usage/15fbae93: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/15fbae93/stage
root_disk_usage/15fbae93: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/15fbae93/root_disk_usage_build.sh
ulimit_filelock_unlimited/5105ae81: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/5105ae81
ulimit_filelock_unlimited/5105ae81: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/5105ae81/stage
ulimit_filelock_unlimited/5105ae81: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/5105ae81/ulimit_filelock_unlimited_build.sh
ulimit_cputime_unlimited/03155ba6: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/03155ba6
ulimit_cputime_unlimited/03155ba6: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/03155ba6/stage
ulimit_cputime_unlimited/03155ba6: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/03155ba6/ulimit_cputime_unlimited_build.sh
ulimit_stacksize_unlimited/dc69ec17: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/dc69ec17
ulimit_stacksize_unlimited/dc69ec17: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/dc69ec17/stage
ulimit_stacksize_unlimited/dc69ec17: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/dc69ec17/ulimit_stacksize_unlimited_build.sh
ulimit_vmsize_unlimited/69dc6336: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/69dc6336
ulimit_vmsize_unlimited/69dc6336: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/69dc6336/stage
ulimit_vmsize_unlimited/69dc6336: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/69dc6336/ulimit_vmsize_unlimited_build.sh
ulimit_filedescriptor_4096/f074c57f: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/f074c57f
ulimit_filedescriptor_4096/f074c57f: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/f074c57f/stage
ulimit_filedescriptor_4096/f074c57f: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/f074c57f/ulimit_filedescriptor_4096_build.sh
ulimit_max_user_process_2048/563b8de9: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/563b8de9
ulimit_max_user_process_2048/563b8de9: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/563b8de9/stage
ulimit_max_user_process_2048/563b8de9: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/563b8de9/ulimit_max_user_process_2048_build.sh
systemd_default_target/a041f803: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/a041f803
systemd_default_target/a041f803: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/a041f803/stage
systemd_default_target/a041f803: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/a041f803/systemd_default_target_build.sh
variables_bash/6f8dfa8d: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/6f8dfa8d
variables_bash/6f8dfa8d: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/6f8dfa8d/stage
variables_bash/6f8dfa8d: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/6f8dfa8d/variables_bash_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
ulimit_stacksize_unlimited/dc69ec17 does not have any dependencies adding test to queue
ulimit_vmsize_unlimited/69dc6336 does not have any dependencies adding test to queue
variables_bash/6f8dfa8d does not have any dependencies adding test to queue
kernel_swapusage/3990f55b does not have any dependencies adding test to queue
root_disk_usage/15fbae93 does not have any dependencies adding test to queue
ulimit_cputime_unlimited/03155ba6 does not have any dependencies adding test to queue
systemd_default_target/a041f803 does not have any dependencies adding test to queue
ulimit_filedescriptor_4096/f074c57f does not have any dependencies adding test to queue
ulimit_max_user_process_2048/563b8de9 does not have any dependencies adding test to queue
ulimit_filelock_unlimited/5105ae81 does not have any dependencies adding test to queue
ulimit_vmsize_unlimited/69dc6336: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/69dc6336/stage
ulimit_vmsize_unlimited/69dc6336: Running Test via command: bash --norc --noprofile -eo pipefail ulimit_vmsize_unlimited_build.sh
ulimit_vmsize_unlimited/69dc6336: Test completed in 0.005572 seconds
ulimit_vmsize_unlimited/69dc6336: Test completed with returncode: 0
ulimit_vmsize_unlimited/69dc6336: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/69dc6336/ulimit_vmsize_unlimited.out
ulimit_vmsize_unlimited/69dc6336: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/69dc6336/ulimit_vmsize_unlimited.err
ulimit_vmsize_unlimited/69dc6336: performing regular expression - '^unlimited$' on file: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_vmsize_unlimited/69dc6336/ulimit_vmsize_unlimited.out
ulimit_vmsize_unlimited/69dc6336: Regular Expression Match - Success!
variables_bash/6f8dfa8d: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/6f8dfa8d/stage
variables_bash/6f8dfa8d: Running Test via command: bash --norc --noprofile -eo pipefail variables_bash_build.sh
variables_bash/6f8dfa8d: Test completed in 0.008852 seconds
variables_bash/6f8dfa8d: Test completed with returncode: 0
variables_bash/6f8dfa8d: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/6f8dfa8d/variables_bash.out
variables_bash/6f8dfa8d: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/6f8dfa8d/variables_bash.err
ulimit_stacksize_unlimited/dc69ec17: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/dc69ec17/stage
ulimit_stacksize_unlimited/dc69ec17: Running Test via command: bash --norc --noprofile -eo pipefail ulimit_stacksize_unlimited_build.sh
ulimit_stacksize_unlimited/dc69ec17: Test completed in 0.005299 seconds
ulimit_stacksize_unlimited/dc69ec17: Test completed with returncode: 0
ulimit_stacksize_unlimited/dc69ec17: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/dc69ec17/ulimit_stacksize_unlimited.out
ulimit_stacksize_unlimited/dc69ec17: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/dc69ec17/ulimit_stacksize_unlimited.err
ulimit_stacksize_unlimited/dc69ec17: performing regular expression - '^unlimited$' on file: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_stacksize_unlimited/dc69ec17/ulimit_stacksize_unlimited.out
ulimit_stacksize_unlimited/dc69ec17: Regular Expression Match - Failed!
kernel_swapusage/3990f55b: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3990f55b/stage
kernel_swapusage/3990f55b: Running Test via command: bash --norc --noprofile -eo pipefail kernel_swapusage_build.sh
kernel_swapusage/3990f55b: Test completed in 0.006276 seconds
kernel_swapusage/3990f55b: Test completed with returncode: 255
kernel_swapusage/3990f55b: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3990f55b/kernel_swapusage.out
kernel_swapusage/3990f55b: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/3990f55b/kernel_swapusage.err
root_disk_usage/15fbae93: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/15fbae93/stage
root_disk_usage/15fbae93: Running Test via command: bash --norc --noprofile -eo pipefail root_disk_usage_build.sh
root_disk_usage/15fbae93: Test completed in 0.009 seconds
root_disk_usage/15fbae93: Test completed with returncode: 0
root_disk_usage/15fbae93: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/15fbae93/root_disk_usage.out
root_disk_usage/15fbae93: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/15fbae93/root_disk_usage.err
ulimit_cputime_unlimited/03155ba6: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/03155ba6/stage
ulimit_cputime_unlimited/03155ba6: Running Test via command: bash --norc --noprofile -eo pipefail ulimit_cputime_unlimited_build.sh
ulimit_cputime_unlimited/03155ba6: Test completed in 0.005565 seconds
ulimit_cputime_unlimited/03155ba6: Test completed with returncode: 0
ulimit_cputime_unlimited/03155ba6: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/03155ba6/ulimit_cputime_unlimited.out
ulimit_cputime_unlimited/03155ba6: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/03155ba6/ulimit_cputime_unlimited.err
ulimit_cputime_unlimited/03155ba6: performing regular expression - '^unlimited$' on file: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_cputime_unlimited/03155ba6/ulimit_cputime_unlimited.out
ulimit_cputime_unlimited/03155ba6: Regular Expression Match - Success!
ulimit_filedescriptor_4096/f074c57f: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/f074c57f/stage
ulimit_filedescriptor_4096/f074c57f: Running Test via command: bash --norc --noprofile -eo pipefail ulimit_filedescriptor_4096_build.sh
ulimit_filedescriptor_4096/f074c57f: Test completed in 0.00553 seconds
ulimit_filedescriptor_4096/f074c57f: Test completed with returncode: 0
ulimit_filedescriptor_4096/f074c57f: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/f074c57f/ulimit_filedescriptor_4096.out
ulimit_filedescriptor_4096/f074c57f: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/f074c57f/ulimit_filedescriptor_4096.err
ulimit_filedescriptor_4096/f074c57f: performing regular expression - '^4096$' on file: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filedescriptor_4096/f074c57f/ulimit_filedescriptor_4096.out
ulimit_filedescriptor_4096/f074c57f: Regular Expression Match - Failed!
ulimit_max_user_process_2048/563b8de9: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/563b8de9/stage
ulimit_max_user_process_2048/563b8de9: Running Test via command: bash --norc --noprofile -eo pipefail ulimit_max_user_process_2048_build.sh
ulimit_max_user_process_2048/563b8de9: Test completed in 0.005627 seconds
ulimit_max_user_process_2048/563b8de9: Test completed with returncode: 0
ulimit_max_user_process_2048/563b8de9: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/563b8de9/ulimit_max_user_process_2048.out
ulimit_max_user_process_2048/563b8de9: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/563b8de9/ulimit_max_user_process_2048.err
ulimit_max_user_process_2048/563b8de9: performing regular expression - '^2048$' on file: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_max_user_process_2048/563b8de9/ulimit_max_user_process_2048.out
ulimit_max_user_process_2048/563b8de9: Regular Expression Match - Failed!
systemd_default_target/a041f803: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/a041f803/stage
systemd_default_target/a041f803: Running Test via command: bash --norc --noprofile -eo pipefail systemd_default_target_build.sh
systemd_default_target/a041f803: Test completed in 0.008385 seconds
systemd_default_target/a041f803: Test completed with returncode: 1
systemd_default_target/a041f803: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/a041f803/systemd_default_target.out
systemd_default_target/a041f803: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/a041f803/systemd_default_target.err
ulimit_filelock_unlimited/5105ae81: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/5105ae81/stage
ulimit_filelock_unlimited/5105ae81: Running Test via command: bash --norc --noprofile -eo pipefail ulimit_filelock_unlimited_build.sh
ulimit_filelock_unlimited/5105ae81: Test completed in 0.005987 seconds
ulimit_filelock_unlimited/5105ae81: Test completed with returncode: 0
ulimit_filelock_unlimited/5105ae81: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/5105ae81/ulimit_filelock_unlimited.out
ulimit_filelock_unlimited/5105ae81: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/5105ae81/ulimit_filelock_unlimited.err
ulimit_filelock_unlimited/5105ae81: performing regular expression - '^unlimited$' on file: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ulimits/ulimit_filelock_unlimited/5105ae81/ulimit_filelock_unlimited.out
ulimit_filelock_unlimited/5105ae81: Regular Expression Match - Success!
In this iteration we are going to run the following tests: [ulimit_vmsize_unlimited/69dc6336, variables_bash/6f8dfa8d, ulimit_stacksize_unlimited/dc69ec17, kernel_swapusage/3990f55b, root_disk_usage/15fbae93, ulimit_cputime_unlimited/03155ba6, ulimit_filedescriptor_4096/f074c57f, ulimit_max_user_process_2048/563b8de9, systemd_default_target/a041f803, ulimit_filelock_unlimited/5105ae81]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ ulimit_vmsiz │ generic.loc… │ PASS   │ False True    │ 0          │ 0.005572 │
│ e_unlimited/ │              │        │ False         │            │          │
│ 69dc6336     │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ ulimit_filel │ generic.loc… │ PASS   │ False True    │ 0          │ 0.005987 │
│ ock_unlimite │              │        │ False         │            │          │
│ d/5105ae81   │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ ulimit_stack │ generic.loc… │ FAIL   │ False False   │ 0          │ 0.005299 │
│ size_unlimit │              │        │ False         │            │          │
│ ed/dc69ec17  │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ root_disk_us │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.009    │
│ age/15fbae93 │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ ulimit_filed │ generic.loc… │ FAIL   │ False False   │ 0          │ 0.00553  │
│ escriptor_40 │              │        │ False         │            │          │
│ 96/f074c57f  │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ systemd_defa │ generic.loc… │ FAIL   │ N/A N/A N/A   │ 1          │ 0.008385 │
│ ult_target/a │              │        │               │            │          │
│ 041f803      │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ variables_ba │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.008852 │
│ sh/6f8dfa8d  │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ kernel_swapu │ generic.loc… │ FAIL   │ N/A N/A N/A   │ 255        │ 0.006276 │
│ sage/3990f55 │              │        │               │            │          │
│ b            │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ ulimit_cputi │ generic.loc… │ PASS   │ False True    │ 0          │ 0.005565 │
│ me_unlimited │              │        │ False         │            │          │
│ /03155ba6    │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ ulimit_max_u │ generic.loc… │ FAIL   │ False False   │ 0          │ 0.005627 │
│ ser_process_ │              │        │ False         │            │          │
│ 2048/563b8de │              │        │               │            │          │
│ 9            │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 10 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_xn1g8ex2.log

Excluding Buildspecs

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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:19                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ 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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:20                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/g… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/g… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/g… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/g… ║
╚══════════════════════════════════════════════════════════════════════════════╝
                              Excluded buildspecs                               
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/g… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/general_tests/configuration/disk_usage.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/general_tests/configuration/systemd-default-target.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/general_tests/configuration/kernel_state.yml: VALID
Total builder objects created: 3
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ root_di… │ script │ generic… │ None     │ None  │ None  │ Check    │ /home/… │
│          │        │          │          │       │       │ root     │         │
│          │        │          │          │       │       │ disk     │         │
│          │        │          │          │       │       │ usage    │         │
│          │        │          │          │       │       │ and      │         │
│          │        │          │          │       │       │ report   │         │
│          │        │          │          │       │       │ if it    │         │
│          │        │          │          │       │       │ exceeds  │         │
│          │        │          │          │       │       │ thresho… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ systemd… │ script │ generic… │ None     │ None  │ None  │ check if │ /home/… │
│          │        │          │          │       │       │ default  │         │
│          │        │          │          │       │       │ target   │         │
│          │        │          │          │       │       │ is       │         │
│          │        │          │          │       │       │ multi-u… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ kernel_… │ script │ generic… │ None     │ None  │ None  │ Retrieve │ /home/… │
│          │        │          │          │       │       │ Kernel   │         │
│          │        │          │          │       │       │ Swap     │         │
│          │        │          │          │       │       │ Usage    │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
root_disk_usage/3b31f52b: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/3b31f52b
root_disk_usage/3b31f52b: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/3b31f52b/stage
root_disk_usage/3b31f52b: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/3b31f52b/root_disk_usage_build.sh
systemd_default_target/54f27e1a: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/54f27e1a
systemd_default_target/54f27e1a: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/54f27e1a/stage
systemd_default_target/54f27e1a: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/54f27e1a/systemd_default_target_build.sh
kernel_swapusage/4b00f103: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/4b00f103
kernel_swapusage/4b00f103: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/4b00f103/stage
kernel_swapusage/4b00f103: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/4b00f103/kernel_swapusage_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
root_disk_usage/3b31f52b does not have any dependencies adding test to queue
systemd_default_target/54f27e1a does not have any dependencies adding test to queue
kernel_swapusage/4b00f103 does not have any dependencies adding test to queue
root_disk_usage/3b31f52b: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/3b31f52b/stage
root_disk_usage/3b31f52b: Running Test via command: bash --norc --noprofile -eo pipefail root_disk_usage_build.sh
root_disk_usage/3b31f52b: Test completed in 0.009398 seconds
root_disk_usage/3b31f52b: Test completed with returncode: 0
root_disk_usage/3b31f52b: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/3b31f52b/root_disk_usage.out
root_disk_usage/3b31f52b: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/disk_usage/root_disk_usage/3b31f52b/root_disk_usage.err
systemd_default_target/54f27e1a: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/54f27e1a/stage
systemd_default_target/54f27e1a: Running Test via command: bash --norc --noprofile -eo pipefail systemd_default_target_build.sh
systemd_default_target/54f27e1a: Test completed in 0.007967 seconds
systemd_default_target/54f27e1a: Test completed with returncode: 1
systemd_default_target/54f27e1a: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/54f27e1a/systemd_default_target.out
systemd_default_target/54f27e1a: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/systemd-default-target/systemd_default_target/54f27e1a/systemd_default_target.err
kernel_swapusage/4b00f103: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/4b00f103/stage
kernel_swapusage/4b00f103: Running Test via command: bash --norc --noprofile -eo pipefail kernel_swapusage_build.sh
kernel_swapusage/4b00f103: Test completed in 0.005938 seconds
kernel_swapusage/4b00f103: Test completed with returncode: 255
kernel_swapusage/4b00f103: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/4b00f103/kernel_swapusage.out
kernel_swapusage/4b00f103: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/kernel_state/kernel_swapusage/4b00f103/kernel_swapusage.err
In this iteration we are going to run the following tests: [root_disk_usage/3b31f52b, systemd_default_target/54f27e1a, kernel_swapusage/4b00f103]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ root_disk_us │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.009398 │
│ age/3b31f52b │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ systemd_defa │ generic.loc… │ FAIL   │ N/A N/A N/A   │ 1          │ 0.007967 │
│ ult_target/5 │              │        │               │            │          │
│ 4f27e1a      │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ kernel_swapu │ generic.loc… │ FAIL   │ N/A N/A N/A   │ 255        │ 0.005938 │
│ sage/4b00f10 │              │        │               │            │          │
│ 3            │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 3 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_pann1n0h.log

Building By 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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:20                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝
                           Buildspecs By Tag=network                            
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/tags_example.yml: VALID
Total builder objects created: 2
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ string_… │ script │ generic… │ None     │ None  │ None  │ tags can │ /home/… │
│          │        │          │          │       │       │ be a     │         │
│          │        │          │          │       │       │ string   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ list_of… │ script │ generic… │ None     │ None  │ None  │ tags can │ /home/… │
│          │        │          │          │       │       │ be a     │         │
│          │        │          │          │       │       │ list of  │         │
│          │        │          │          │       │       │ strings  │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
string_tag/8cc300f3: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/string_tag/8cc300f3
string_tag/8cc300f3: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/string_tag/8cc300f3/stage
string_tag/8cc300f3: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/string_tag/8cc300f3/string_tag_build.sh
list_of_strings_tags/4c089685: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/list_of_strings_tags/4c089685
list_of_strings_tags/4c089685: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/list_of_strings_tags/4c089685/stage
list_of_strings_tags/4c089685: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/list_of_strings_tags/4c089685/list_of_strings_tags_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
string_tag/8cc300f3 does not have any dependencies adding test to queue
list_of_strings_tags/4c089685 does not have any dependencies adding test to queue
string_tag/8cc300f3: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/string_tag/8cc300f3/stage
string_tag/8cc300f3: Running Test via command: bash --norc --noprofile -eo pipefail string_tag_build.sh
string_tag/8cc300f3: Test completed in 0.006298 seconds
string_tag/8cc300f3: Test completed with returncode: 0
string_tag/8cc300f3: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/string_tag/8cc300f3/string_tag.out
string_tag/8cc300f3: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/string_tag/8cc300f3/string_tag.err
list_of_strings_tags/4c089685: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/list_of_strings_tags/4c089685/stage
list_of_strings_tags/4c089685: Running Test via command: bash --norc --noprofile -eo pipefail list_of_strings_tags_build.sh
list_of_strings_tags/4c089685: Test completed in 3.03007 seconds
list_of_strings_tags/4c089685: Test completed with returncode: 0
list_of_strings_tags/4c089685: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/list_of_strings_tags/4c089685/list_of_strings_tags.out
list_of_strings_tags/4c089685: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/list_of_strings_tags/4c089685/list_of_strings_tags.err
In this iteration we are going to run the following tests: [string_tag/8cc300f3, list_of_strings_tags/4c089685]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ string_tag/8 │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.006298 │
│ cc300f3      │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ list_of_stri │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 3.03007  │
│ ngs_tags/4c0 │              │        │               │            │          │
│ 89685        │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 2 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_gquol289.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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:24                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝
                            Buildspecs By Tag=python                            
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝
                             Buildspecs By Tag=pass                             
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/python-shell.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/python-hello.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/pass_returncode.yml: VALID
Total builder objects created: 6
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ circle_… │ script │ generic… │ None     │ None  │ None  │ Calcula… │ /home/… │
│          │        │          │          │       │       │ circle   │         │
│          │        │          │          │       │       │ of area  │         │
│          │        │          │          │       │       │ given a  │         │
│          │        │          │          │       │       │ radius   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ python_… │ script │ generic… │ None     │ None  │ None  │ Hello    │ /home/… │
│          │        │          │          │       │       │ World    │         │
│          │        │          │          │       │       │ python   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_f… │ script │ generic… │ None     │ None  │ None  │ exit 1   │ /home/… │
│          │        │          │          │       │       │ by       │         │
│          │        │          │          │       │       │ default  │         │
│          │        │          │          │       │       │ is FAIL  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_p… │ script │ generic… │ None     │ None  │ None  │ report   │ /home/… │
│          │        │          │          │       │       │ exit 1   │         │
│          │        │          │          │       │       │ as PASS  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnc… │ script │ generic… │ None     │ None  │ None  │ exit 2   │ /home/… │
│          │        │          │          │       │       │ failed   │         │
│          │        │          │          │       │       │ since it │         │
│          │        │          │          │       │       │ failed   │         │
│          │        │          │          │       │       │ to match │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 1        │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnc… │ script │ generic… │ None     │ None  │ None  │ exit 128 │ /home/… │
│          │        │          │          │       │       │ matches  │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 128      │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
circle_area/e82ff737: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/e82ff737
circle_area/e82ff737: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/e82ff737/stage
circle_area/e82ff737: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/e82ff737/circle_area_build.sh
python_hello/440133c7: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/440133c7
python_hello/440133c7: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/440133c7/stage
python_hello/440133c7: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/440133c7/python_hello_build.sh
exit1_fail/4e5a55d6: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/4e5a55d6
exit1_fail/4e5a55d6: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/4e5a55d6/stage
exit1_fail/4e5a55d6: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/4e5a55d6/exit1_fail_build.sh
exit1_pass/7410f5c7: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/7410f5c7
exit1_pass/7410f5c7: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/7410f5c7/stage
exit1_pass/7410f5c7: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/7410f5c7/exit1_pass_build.sh
returncode_list_mismatch/7620ad18: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/7620ad18
returncode_list_mismatch/7620ad18: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/7620ad18/stage
returncode_list_mismatch/7620ad18: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/7620ad18/returncode_list_mismatch_build.sh
returncode_int_match/745df7e9: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/745df7e9
returncode_int_match/745df7e9: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/745df7e9/stage
returncode_int_match/745df7e9: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/745df7e9/returncode_int_match_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
python_hello/440133c7 does not have any dependencies adding test to queue
returncode_list_mismatch/7620ad18 does not have any dependencies adding test to queue
exit1_pass/7410f5c7 does not have any dependencies adding test to queue
exit1_fail/4e5a55d6 does not have any dependencies adding test to queue
returncode_int_match/745df7e9 does not have any dependencies adding test to queue
circle_area/e82ff737 does not have any dependencies adding test to queue
circle_area/e82ff737: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/e82ff737/stage
circle_area/e82ff737: Running Test via command: bash --norc --noprofile -eo pipefail circle_area_build.sh
circle_area/e82ff737: Test completed in 0.031227 seconds
circle_area/e82ff737: Test completed with returncode: 0
circle_area/e82ff737: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/e82ff737/circle_area.out
circle_area/e82ff737: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/e82ff737/circle_area.err
python_hello/440133c7: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/440133c7/stage
python_hello/440133c7: Running Test via command: bash --norc --noprofile -eo pipefail python_hello_build.sh
python_hello/440133c7: Test completed in 0.030983 seconds
python_hello/440133c7: Test completed with returncode: 0
python_hello/440133c7: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/440133c7/python_hello.out
python_hello/440133c7: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/440133c7/python_hello.err
returncode_list_mismatch/7620ad18: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/7620ad18/stage
returncode_list_mismatch/7620ad18: Running Test via command: bash --norc --noprofile -eo pipefail returncode_list_mismatch_build.sh
returncode_list_mismatch/7620ad18: Test completed in 0.005672 seconds
returncode_list_mismatch/7620ad18: Test completed with returncode: 2
returncode_list_mismatch/7620ad18: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/7620ad18/returncode_list_mismatch.out
returncode_list_mismatch/7620ad18: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/7620ad18/returncode_list_mismatch.err
returncode_list_mismatch/7620ad18: Checking returncode - 2 is matched in list [1, 3]
exit1_fail/4e5a55d6: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/4e5a55d6/stage
exit1_fail/4e5a55d6: Running Test via command: bash --norc --noprofile -eo pipefail exit1_fail_build.sh
exit1_fail/4e5a55d6: Test completed in 0.005167 seconds
exit1_fail/4e5a55d6: Test completed with returncode: 1
exit1_fail/4e5a55d6: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/4e5a55d6/exit1_fail.out
exit1_fail/4e5a55d6: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/4e5a55d6/exit1_fail.err
returncode_int_match/745df7e9: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/745df7e9/stage
returncode_int_match/745df7e9: Running Test via command: bash --norc --noprofile -eo pipefail returncode_int_match_build.sh
returncode_int_match/745df7e9: Test completed in 0.005317 seconds
returncode_int_match/745df7e9: Test completed with returncode: 128
returncode_int_match/745df7e9: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/745df7e9/returncode_int_match.out
returncode_int_match/745df7e9: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/745df7e9/returncode_int_match.err
returncode_int_match/745df7e9: Checking returncode - 128 is matched in list [128]
exit1_pass/7410f5c7: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/7410f5c7/stage
exit1_pass/7410f5c7: Running Test via command: bash --norc --noprofile -eo pipefail exit1_pass_build.sh
exit1_pass/7410f5c7: Test completed in 0.005284 seconds
exit1_pass/7410f5c7: Test completed with returncode: 1
exit1_pass/7410f5c7: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/7410f5c7/exit1_pass.out
exit1_pass/7410f5c7: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/7410f5c7/exit1_pass.err
exit1_pass/7410f5c7: Checking returncode - 1 is matched in list [1]
In this iteration we are going to run the following tests: [circle_area/e82ff737, python_hello/440133c7, returncode_list_mismatch/7620ad18, exit1_fail/4e5a55d6, returncode_int_match/745df7e9, exit1_pass/7410f5c7]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ returncode_l │ generic.loc… │ FAIL   │ False False   │ 2          │ 0.005672 │
│ ist_mismatch │              │        │ False         │            │          │
│ /7620ad18    │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ exit1_pass/7 │ generic.loc… │ PASS   │ True False    │ 1          │ 0.005284 │
│ 410f5c7      │              │        │ False         │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ returncode_i │ generic.loc… │ PASS   │ True False    │ 128        │ 0.005317 │
│ nt_match/745 │              │        │ False         │            │          │
│ df7e9        │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ python_hello │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.030983 │
│ /440133c7    │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ exit1_fail/4 │ generic.loc… │ FAIL   │ N/A N/A N/A   │ 1          │ 0.005167 │
│ e5a55d6      │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ circle_area/ │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.031227 │
│ e82ff737     │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 6 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_2gjoahwr.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 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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:25                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝
                             Buildspecs By Tag=pass                             
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/python-hello.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/pass_returncode.yml: VALID
Total builder objects created: 5
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ python_… │ script │ generic… │ None     │ None  │ None  │ Hello    │ /home/… │
│          │        │          │          │       │       │ World    │         │
│          │        │          │          │       │       │ python   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_f… │ script │ generic… │ None     │ None  │ None  │ exit 1   │ /home/… │
│          │        │          │          │       │       │ by       │         │
│          │        │          │          │       │       │ default  │         │
│          │        │          │          │       │       │ is FAIL  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_p… │ script │ generic… │ None     │ None  │ None  │ report   │ /home/… │
│          │        │          │          │       │       │ exit 1   │         │
│          │        │          │          │       │       │ as PASS  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnc… │ script │ generic… │ None     │ None  │ None  │ exit 2   │ /home/… │
│          │        │          │          │       │       │ failed   │         │
│          │        │          │          │       │       │ since it │         │
│          │        │          │          │       │       │ failed   │         │
│          │        │          │          │       │       │ to match │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 1        │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnc… │ script │ generic… │ None     │ None  │ None  │ exit 128 │ /home/… │
│          │        │          │          │       │       │ matches  │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 128      │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
python_hello/0dd47205: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/0dd47205
python_hello/0dd47205: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/0dd47205/stage
python_hello/0dd47205: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/0dd47205/python_hello_build.sh
exit1_fail/08da1c4d: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/08da1c4d
exit1_fail/08da1c4d: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/08da1c4d/stage
exit1_fail/08da1c4d: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/08da1c4d/exit1_fail_build.sh
exit1_pass/8299a795: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/8299a795
exit1_pass/8299a795: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/8299a795/stage
exit1_pass/8299a795: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/8299a795/exit1_pass_build.sh
returncode_list_mismatch/37464b1e: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/37464b1e
returncode_list_mismatch/37464b1e: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/37464b1e/stage
returncode_list_mismatch/37464b1e: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/37464b1e/returncode_list_mismatch_build.sh
returncode_int_match/2d32ebd3: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/2d32ebd3
returncode_int_match/2d32ebd3: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/2d32ebd3/stage
returncode_int_match/2d32ebd3: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/2d32ebd3/returncode_int_match_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
python_hello/0dd47205 does not have any dependencies adding test to queue
exit1_fail/08da1c4d does not have any dependencies adding test to queue
returncode_int_match/2d32ebd3 does not have any dependencies adding test to queue
returncode_list_mismatch/37464b1e does not have any dependencies adding test to queue
exit1_pass/8299a795 does not have any dependencies adding test to queue
python_hello/0dd47205: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/0dd47205/stage
python_hello/0dd47205: Running Test via command: bash --norc --noprofile -eo pipefail python_hello_build.sh
python_hello/0dd47205: Test completed in 0.030717 seconds
python_hello/0dd47205: Test completed with returncode: 0
python_hello/0dd47205: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/0dd47205/python_hello.out
python_hello/0dd47205: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/0dd47205/python_hello.err
exit1_fail/08da1c4d: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/08da1c4d/stage
exit1_fail/08da1c4d: Running Test via command: bash --norc --noprofile -eo pipefail exit1_fail_build.sh
exit1_fail/08da1c4d: Test completed in 0.005583 seconds
exit1_fail/08da1c4d: Test completed with returncode: 1
exit1_fail/08da1c4d: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/08da1c4d/exit1_fail.out
exit1_fail/08da1c4d: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/08da1c4d/exit1_fail.err
returncode_int_match/2d32ebd3: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/2d32ebd3/stage
returncode_int_match/2d32ebd3: Running Test via command: bash --norc --noprofile -eo pipefail returncode_int_match_build.sh
returncode_int_match/2d32ebd3: Test completed in 0.005215 seconds
returncode_int_match/2d32ebd3: Test completed with returncode: 128
returncode_int_match/2d32ebd3: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/2d32ebd3/returncode_int_match.out
returncode_int_match/2d32ebd3: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/2d32ebd3/returncode_int_match.err
returncode_int_match/2d32ebd3: Checking returncode - 128 is matched in list [128]
returncode_list_mismatch/37464b1e: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/37464b1e/stage
returncode_list_mismatch/37464b1e: Running Test via command: bash --norc --noprofile -eo pipefail returncode_list_mismatch_build.sh
returncode_list_mismatch/37464b1e: Test completed in 0.005178 seconds
returncode_list_mismatch/37464b1e: Test completed with returncode: 2
returncode_list_mismatch/37464b1e: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/37464b1e/returncode_list_mismatch.out
returncode_list_mismatch/37464b1e: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/37464b1e/returncode_list_mismatch.err
returncode_list_mismatch/37464b1e: Checking returncode - 2 is matched in list [1, 3]
exit1_pass/8299a795: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/8299a795/stage
exit1_pass/8299a795: Running Test via command: bash --norc --noprofile -eo pipefail exit1_pass_build.sh
exit1_pass/8299a795: Test completed in 0.005031 seconds
exit1_pass/8299a795: Test completed with returncode: 1
exit1_pass/8299a795: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/8299a795/exit1_pass.out
exit1_pass/8299a795: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/8299a795/exit1_pass.err
exit1_pass/8299a795: Checking returncode - 1 is matched in list [1]
In this iteration we are going to run the following tests: [python_hello/0dd47205, exit1_fail/08da1c4d, returncode_int_match/2d32ebd3, returncode_list_mismatch/37464b1e, exit1_pass/8299a795]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ exit1_pass/8 │ generic.loc… │ PASS   │ True False    │ 1          │ 0.005031 │
│ 299a795      │              │        │ False         │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ returncode_l │ generic.loc… │ FAIL   │ False False   │ 2          │ 0.005178 │
│ ist_mismatch │              │        │ False         │            │          │
│ /37464b1e    │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ returncode_i │ generic.loc… │ PASS   │ True False    │ 128        │ 0.005215 │
│ nt_match/2d3 │              │        │ False         │            │          │
│ 2ebd3        │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ exit1_fail/0 │ generic.loc… │ FAIL   │ N/A N/A N/A   │ 1          │ 0.005583 │
│ 8da1c4d      │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ python_hello │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.030717 │
│ /0dd47205    │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 5 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_ghzl2ftw.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.

Building by Executors

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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:26                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝
                    Buildspecs by Executor=generic.local.csh                    
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspecs                                                                   ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/environment.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/csh_shell_examples.yml: VALID
Total builder objects created: 4
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ bash_en… │ script │ generic… │ None     │ None  │ None  │ Declare  │ /home/… │
│          │        │          │          │       │       │ environ… │         │
│          │        │          │          │       │       │ variabl… │         │
│          │        │          │          │       │       │ in       │         │
│          │        │          │          │       │       │ default  │         │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ (bash)   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ csh_env… │ script │ generic… │ None     │ None  │ None  │ csh      │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ example  │         │
│          │        │          │          │       │       │ to       │         │
│          │        │          │          │       │       │ declare  │         │
│          │        │          │          │       │       │ environ… │         │
│          │        │          │          │       │       │ variabl… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ tcsh_en… │ script │ generic… │ None     │ None  │ None  │ tcsh     │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ example  │         │
│          │        │          │          │       │       │ to       │         │
│          │        │          │          │       │       │ declare  │         │
│          │        │          │          │       │       │ environ… │         │
│          │        │          │          │       │       │ variabl… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ csh_she… │ script │ generic… │ None     │ None  │ None  │ csh      │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ example  │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
bash_env_variables/f93b83e4: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/environment/bash_env_variables/f93b83e4
bash_env_variables/f93b83e4: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/environment/bash_env_variables/f93b83e4/stage
bash_env_variables/f93b83e4: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/environment/bash_env_variables/f93b83e4/bash_env_variables_build.sh
csh_env_declaration/468bbc44: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/csh_env_declaration/468bbc44
csh_env_declaration/468bbc44: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/csh_env_declaration/468bbc44/stage
csh_env_declaration/468bbc44: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/csh_env_declaration/468bbc44/csh_env_declaration_build.sh
tcsh_env_declaration/dcbb2970: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/tcsh_env_declaration/dcbb2970
tcsh_env_declaration/dcbb2970: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/tcsh_env_declaration/dcbb2970/stage
tcsh_env_declaration/dcbb2970: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/tcsh_env_declaration/dcbb2970/tcsh_env_declaration_build.sh
csh_shell/75411a6a: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/csh_shell_examples/csh_shell/75411a6a
csh_shell/75411a6a: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/csh_shell_examples/csh_shell/75411a6a/stage
csh_shell/75411a6a: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/csh_shell_examples/csh_shell/75411a6a/csh_shell_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
csh_shell/75411a6a does not have any dependencies adding test to queue
tcsh_env_declaration/dcbb2970 does not have any dependencies adding test to queue
csh_env_declaration/468bbc44 does not have any dependencies adding test to queue
bash_env_variables/f93b83e4 does not have any dependencies adding test to queue
csh_shell/75411a6a: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/csh_shell_examples/csh_shell/75411a6a/stage
csh_shell/75411a6a: Running Test via command: csh -e csh_shell_build.sh
csh_shell/75411a6a: Test completed in 4.459234 seconds
csh_shell/75411a6a: Test completed with returncode: 0
csh_shell/75411a6a: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/csh_shell_examples/csh_shell/75411a6a/csh_shell.out
csh_shell/75411a6a: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/csh_shell_examples/csh_shell/75411a6a/csh_shell.err
bash_env_variables/f93b83e4: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/environment/bash_env_variables/f93b83e4/stage
bash_env_variables/f93b83e4: Running Test via command: bash --norc --noprofile -eo pipefail bash_env_variables_build.sh
bash_env_variables/f93b83e4: Test completed in 0.007301 seconds
bash_env_variables/f93b83e4: Test completed with returncode: 0
bash_env_variables/f93b83e4: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/environment/bash_env_variables/f93b83e4/bash_env_variables.out
bash_env_variables/f93b83e4: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/environment/bash_env_variables/f93b83e4/bash_env_variables.err
csh_env_declaration/468bbc44: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/csh_env_declaration/468bbc44/stage
csh_env_declaration/468bbc44: Running Test via command: csh -e csh_env_declaration_build.sh
csh_env_declaration/468bbc44: Test completed in 4.37178 seconds
csh_env_declaration/468bbc44: Test completed with returncode: 0
csh_env_declaration/468bbc44: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/csh_env_declaration/468bbc44/csh_env_declaration.out
csh_env_declaration/468bbc44: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/csh_env_declaration/468bbc44/csh_env_declaration.err
tcsh_env_declaration/dcbb2970: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/tcsh_env_declaration/dcbb2970/stage
tcsh_env_declaration/dcbb2970: Running Test via command: csh -e tcsh_env_declaration_build.sh
tcsh_env_declaration/dcbb2970: Test completed in 2.20413 seconds
tcsh_env_declaration/dcbb2970: Test completed with returncode: 1
tcsh_env_declaration/dcbb2970: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/tcsh_env_declaration/dcbb2970/tcsh_env_declaration.out
tcsh_env_declaration/dcbb2970: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/tcsh_env_declaration/dcbb2970/tcsh_env_declaration.err
In this iteration we are going to run the following tests: [csh_shell/75411a6a, bash_env_variables/f93b83e4, csh_env_declaration/468bbc44, tcsh_env_declaration/dcbb2970]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ bash_env_var │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.007301 │
│ iables/f93b8 │              │        │               │            │          │
│ 3e4          │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ tcsh_env_dec │ generic.loc… │ FAIL   │ N/A N/A N/A   │ 1          │ 2.20413  │
│ laration/dcb │              │        │               │            │          │
│ b2970        │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ csh_env_decl │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 4.37178  │
│ aration/468b │              │        │               │            │          │
│ bc44         │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ csh_shell/75 │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 4.459234 │
│ 411a6a       │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



Passed Tests: 3/4 Percentage: 75.000%
Failed Tests: 1/4 Percentage: 25.000%


Adding 4 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_1i8_gk04.log

Note

The --executor option can be appended to discover tests by multiple executors.

Filtering Buildspecs

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 buildspecs which expects a single key=value pair. Currently, buildtest can filter tests based on tags, type and maintainers.

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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:38                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝
                             Buildspecs By Tag=pass                             
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/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/v1.1/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/v1.1/tutorials/test_status/pass_returncode.yml: VALID
Total builder objects created: 2
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ exit1_p… │ script │ generic… │ None     │ None  │ None  │ report   │ /home/… │
│          │        │          │          │       │       │ exit 1   │         │
│          │        │          │          │       │       │ as PASS  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnc… │ script │ generic… │ None     │ None  │ None  │ exit 128 │ /home/… │
│          │        │          │          │       │       │ matches  │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 128      │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
exit1_pass/c9f47852: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/c9f47852
exit1_pass/c9f47852: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/c9f47852/stage
exit1_pass/c9f47852: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/c9f47852/exit1_pass_build.sh
returncode_int_match/802bad71: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/802bad71
returncode_int_match/802bad71: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/802bad71/stage
returncode_int_match/802bad71: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/802bad71/returncode_int_match_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
exit1_pass/c9f47852 does not have any dependencies adding test to queue
returncode_int_match/802bad71 does not have any dependencies adding test to queue
exit1_pass/c9f47852: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/c9f47852/stage
exit1_pass/c9f47852: Running Test via command: bash --norc --noprofile -eo pipefail exit1_pass_build.sh
exit1_pass/c9f47852: Test completed in 0.005398 seconds
exit1_pass/c9f47852: Test completed with returncode: 1
exit1_pass/c9f47852: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/c9f47852/exit1_pass.out
exit1_pass/c9f47852: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/c9f47852/exit1_pass.err
exit1_pass/c9f47852: Checking returncode - 1 is matched in list [1]
returncode_int_match/802bad71: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/802bad71/stage
returncode_int_match/802bad71: Running Test via command: bash --norc --noprofile -eo pipefail returncode_int_match_build.sh
returncode_int_match/802bad71: Test completed in 0.005167 seconds
returncode_int_match/802bad71: Test completed with returncode: 128
returncode_int_match/802bad71: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/802bad71/returncode_int_match.out
returncode_int_match/802bad71: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/802bad71/returncode_int_match.err
returncode_int_match/802bad71: Checking returncode - 128 is matched in list [128]
In this iteration we are going to run the following tests: [exit1_pass/c9f47852, returncode_int_match/802bad71]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ returncode_i │ generic.loc… │ PASS   │ True False    │ 128        │ 0.005167 │
│ nt_match/802 │              │        │ False         │            │          │
│ bad71        │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ exit1_pass/c │ generic.loc… │ PASS   │ True False    │ 1          │ 0.005398 │
│ 9f47852      │              │        │ False         │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 2 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_lv4ptema.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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:38                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


Total Discovered Buildspecs:  41
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  41
────────────────────────────── Parsing Buildspecs ──────────────────────────────
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/invalid_executor.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/tags_example.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/burstbuffer_datawarp_executors.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/environment.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/metrics_regex.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/shell_examples.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/skip_tests.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/gcc_version.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/shebang.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/sleep.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/csh_shell_examples.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/vars.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/summary_example.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/exists.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/add_numbers.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/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/v1.1/tutorials/job_dependency/ex1.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/job_dependency/ex3.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/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/v1.1/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/v1.1/tutorials/job_dependency/ex4.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/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/v1.1/tutorials/python-hello.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/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/v1.1/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/v1.1/tutorials/job_dependency/ex2.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/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/v1.1/tutorials/python-shell.yml: skipping test because 'maintainers' field is not specified in buildspec.
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/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/v1.1/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/v1.1/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/v1.1/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/v1.1/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/v1.1/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/v1.1/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/v1.1/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/v1.1/tutorials/skip_buildspec.yml: skipping all test since 'skip' is defined
Valid Buildspecs: 38
Invalid Buildspecs: 3
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/invalid_executor.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/tags_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/burstbuffer_datawarp_executors.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/environment.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/metrics_regex.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/shell_examples.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/skip_tests.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/gcc_version.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/shebang.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/sleep.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/csh_shell_examples.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/vars.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/summary_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/exists.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/add_numbers.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/multi_executors/executors_var_env_declaration.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/job_dependency/ex1.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/job_dependency/ex3.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/pass_returncode.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/file_and_dir_check.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/job_dependency/ex4.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/multi_executors/status_by_executors.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/python-hello.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/runtime_status_test.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/multi_executors/executor_scheduler.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/job_dependency/ex2.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/hello_world.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/explicit_state.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/python-shell.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/perf_checks/assert_eq.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/file_exists_with_number.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/status_regex.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/multi_executors/executor_regex_script.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/maintainers_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/perf_checks/assert_ge.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/perf_checks/assert_range.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/perf_checks/assert_eq_exceptions.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/skip_buildspec.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/file_exists_exception.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/invalid_tags.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/invalid_buildspec_section.yml: INVALID
                            Buildspecs Filtered out                             
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ buildspecs                                                                   ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
└──────────────────────────────────────────────────────────────────────────────┘
Total builder objects created: 1
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ hello_w… │ script │ generic… │ None     │ None  │ None  │ hello    │ /home/… │
│          │        │          │          │       │       │ world    │         │
│          │        │          │          │       │       │ example  │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
hello_world/082c9414: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/hello_world/hello_world/082c9414
hello_world/082c9414: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/hello_world/hello_world/082c9414/stage
hello_world/082c9414: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/hello_world/hello_world/082c9414/hello_world_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
hello_world/082c9414 does not have any dependencies adding test to queue
hello_world/082c9414: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/hello_world/hello_world/082c9414/stage
hello_world/082c9414: Running Test via command: bash --norc --noprofile -eo pipefail hello_world_build.sh
hello_world/082c9414: Test completed in 0.005561 seconds
hello_world/082c9414: Test completed with returncode: 0
hello_world/082c9414: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/hello_world/hello_world/082c9414/hello_world.out
hello_world/082c9414: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/hello_world/hello_world/082c9414/hello_world.err
In this iteration we are going to run the following tests: [hello_world/082c9414]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ hello_world/ │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.005561 │
│ 082c9414     │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 1 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_7s4tttgp.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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:39                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


Total Discovered Buildspecs:  41
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  41
────────────────────────────── Parsing Buildspecs ──────────────────────────────
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/skip_buildspec.yml: skipping all test since 'skip' is defined
skip: skipping test due to 'skip' property.
Valid Buildspecs: 38
Invalid Buildspecs: 3
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/summary_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/add_numbers.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/skip_buildspec.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/perf_checks/assert_ge.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/csh_shell_examples.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/perf_checks/assert_range.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/job_dependency/ex3.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/multi_executors/executors_var_env_declaration.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/exists.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/python-shell.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/pass_returncode.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/explicit_state.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/perf_checks/assert_eq.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/environment.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/invalid_executor.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/sleep.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/file_exists_with_number.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/python-hello.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/multi_executors/executor_regex_script.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/maintainers_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/metrics_regex.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/skip_tests.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/job_dependency/ex2.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/shebang.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/gcc_version.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/burstbuffer_datawarp_executors.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/perf_checks/assert_eq_exceptions.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/hello_world.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/multi_executors/executor_scheduler.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/job_dependency/ex4.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/file_and_dir_check.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/runtime_status_test.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/multi_executors/status_by_executors.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/job_dependency/ex1.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/shell_examples.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/tags_example.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/vars.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/status_regex.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/invalid_tags.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/invalid_buildspec_section.yml: INVALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/test_status/file_exists_exception.yml: INVALID
                            Buildspecs Filtered out                             
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ buildspecs                                                                   ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
└──────────────────────────────────────────────────────────────────────────────┘
Total builder objects created: 72
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ summary… │ script │ generic… │ None     │ None  │ None  │ The      │ /home/… │
│          │        │          │          │       │       │ summary  │         │
│          │        │          │          │       │       │ field    │         │
│          │        │          │          │       │       │ can be a │         │
│          │        │          │          │       │       │ multi-l… │         │
│          │        │          │          │       │       │ string   │         │
│          │        │          │          │       │       │ and      │         │
│          │        │          │          │       │       │ exceed   │         │
│          │        │          │          │       │       │ 80 char  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ add_num… │ script │ generic… │ None     │ None  │ None  │ Add X+Y  │ /home/… │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ stream_… │ script │ generic… │ None     │ None  │ None  │ Run      │ /home/… │
│          │        │          │          │       │       │ stream   │         │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ with     │         │
│          │        │          │          │       │       │ metrics  │         │
│          │        │          │          │       │       │ example  │         │
│          │        │          │          │       │       │ using    │         │
│          │        │          │          │       │       │ assert   │         │
│          │        │          │          │       │       │ greater  │         │
│          │        │          │          │       │       │ equal    │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ csh_she… │ script │ generic… │ None     │ None  │ None  │ csh      │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ example  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ assert_… │ script │ generic… │ None     │ None  │ None  │ Example  │ /home/… │
│          │        │          │          │       │       │ on       │         │
│          │        │          │          │       │       │ assert_… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ pass_te… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will     │         │
│          │        │          │          │       │       │ always   │         │
│          │        │          │          │       │       │ pass     │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ fail_te… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will run │         │
│          │        │          │          │       │       │ if test  │         │
│          │        │          │          │       │       │ 'pass_t… │         │
│          │        │          │          │       │       │ is in    │         │
│          │        │          │          │       │       │ state    │         │
│          │        │          │          │       │       │ 'PASS'   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ pass_an… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will run │         │
│          │        │          │          │       │       │ if       │         │
│          │        │          │          │       │       │ pass_te… │         │
│          │        │          │          │       │       │ is       │         │
│          │        │          │          │       │       │ 'PASS'   │         │
│          │        │          │          │       │       │ and      │         │
│          │        │          │          │       │       │ fail_te… │         │
│          │        │          │          │       │       │ is       │         │
│          │        │          │          │       │       │ 'FAIL'   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ final_t… │ script │ generic… │ None     │ None  │ None  │ Test     │ /home/… │
│          │        │          │          │       │       │ will run │         │
│          │        │          │          │       │       │ after    │         │
│          │        │          │          │       │       │ 'pass_t… │         │
│          │        │          │          │       │       │ 'fail_t… │         │
│          │        │          │          │       │       │ and      │         │
│          │        │          │          │       │       │ 'pass_a… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ executo… │ script │ generic… │ None     │ None  │ None  │ Declari… │ /home/… │
│          │        │          │          │       │       │ env and  │         │
│          │        │          │          │       │       │ vars by  │         │
│          │        │          │          │       │       │ executo… │         │
│          │        │          │          │       │       │ section  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ executo… │ script │ generic… │ None     │ None  │ None  │ Declari… │ /home/… │
│          │        │          │          │       │       │ env and  │         │
│          │        │          │          │       │       │ vars by  │         │
│          │        │          │          │       │       │ executo… │         │
│          │        │          │          │       │       │ section  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ status_… │ script │ generic… │ None     │ None  │ None  │ status   │ /home/… │
│          │        │          │          │       │       │ check    │         │
│          │        │          │          │       │       │ based    │         │
│          │        │          │          │       │       │ for file │         │
│          │        │          │          │       │       │ and      │         │
│          │        │          │          │       │       │ directo… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ status_… │ script │ generic… │ None     │ None  │ None  │ status   │ /home/… │
│          │        │          │          │       │       │ check    │         │
│          │        │          │          │       │       │ failure  │         │
│          │        │          │          │       │       │ for      │         │
│          │        │          │          │       │       │ existen… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ circle_… │ script │ generic… │ None     │ None  │ None  │ Calcula… │ /home/… │
│          │        │          │          │       │       │ circle   │         │
│          │        │          │          │       │       │ of area  │         │
│          │        │          │          │       │       │ given a  │         │
│          │        │          │          │       │       │ radius   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_f… │ script │ generic… │ None     │ None  │ None  │ exit 1   │ /home/… │
│          │        │          │          │       │       │ by       │         │
│          │        │          │          │       │       │ default  │         │
│          │        │          │          │       │       │ is FAIL  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_p… │ script │ generic… │ None     │ None  │ None  │ report   │ /home/… │
│          │        │          │          │       │       │ exit 1   │         │
│          │        │          │          │       │       │ as PASS  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnc… │ script │ generic… │ None     │ None  │ None  │ exit 2   │ /home/… │
│          │        │          │          │       │       │ failed   │         │
│          │        │          │          │       │       │ since it │         │
│          │        │          │          │       │       │ failed   │         │
│          │        │          │          │       │       │ to match │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 1        │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnc… │ script │ generic… │ None     │ None  │ None  │ exit 128 │ /home/… │
│          │        │          │          │       │       │ matches  │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 128      │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ always_… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will     │         │
│          │        │          │          │       │       │ always   │         │
│          │        │          │          │       │       │ 'PASS'   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ always_… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will     │         │
│          │        │          │          │       │       │ always   │         │
│          │        │          │          │       │       │ 'FAIL'   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ test_fa… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will     │         │
│          │        │          │          │       │       │ 'FAIL'   │         │
│          │        │          │          │       │       │ even if  │         │
│          │        │          │          │       │       │ we have  │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ match    │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ test_pa… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will     │         │
│          │        │          │          │       │       │ 'PASS'   │         │
│          │        │          │          │       │       │ even if  │         │
│          │        │          │          │       │       │ we have  │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ mismatch │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ assert_… │ script │ generic… │ None     │ None  │ None  │ Test for │ /home/… │
│          │        │          │          │       │       │ assert   │         │
│          │        │          │          │       │       │ equality │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ bash_en… │ script │ generic… │ None     │ None  │ None  │ Declare  │ /home/… │
│          │        │          │          │       │       │ environ… │         │
│          │        │          │          │       │       │ variabl… │         │
│          │        │          │          │       │       │ in       │         │
│          │        │          │          │       │       │ default  │         │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ (bash)   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ csh_env… │ script │ generic… │ None     │ None  │ None  │ csh      │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ example  │         │
│          │        │          │          │       │       │ to       │         │
│          │        │          │          │       │       │ declare  │         │
│          │        │          │          │       │       │ environ… │         │
│          │        │          │          │       │       │ variabl… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ tcsh_en… │ script │ generic… │ None     │ None  │ None  │ tcsh     │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ example  │         │
│          │        │          │          │       │       │ to       │         │
│          │        │          │          │       │       │ declare  │         │
│          │        │          │          │       │       │ environ… │         │
│          │        │          │          │       │       │ variabl… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ sleep/c… │ script │ generic… │ None     │ None  │ None  │ sleep 2  │ /home/… │
│          │        │          │          │       │       │ seconds  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ file_ex… │ script │ generic… │ None     │ None  │ None  │ this     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will     │         │
│          │        │          │          │       │       │ pass     │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ python_… │ script │ generic… │ None     │ None  │ None  │ Hello    │ /home/… │
│          │        │          │          │       │       │ World    │         │
│          │        │          │          │       │       │ python   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ multipl… │ script │ generic… │ None     │ None  │ None  │ run test │ /home/… │
│          │        │          │          │       │       │ with     │         │
│          │        │          │          │       │       │ executor │         │
│          │        │          │          │       │       │ generic… │         │
│          │        │          │          │       │       │ and      │         │
│          │        │          │          │       │       │ generic… │         │
│          │        │          │          │       │       │ executor │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ multipl… │ script │ generic… │ None     │ None  │ None  │ run test │ /home/… │
│          │        │          │          │       │       │ with     │         │
│          │        │          │          │       │       │ executor │         │
│          │        │          │          │       │       │ generic… │         │
│          │        │          │          │       │       │ and      │         │
│          │        │          │          │       │       │ generic… │         │
│          │        │          │          │       │       │ executor │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ foo_bar… │ script │ generic… │ None     │ None  │ None  │ prints   │ /home/… │
│          │        │          │          │       │       │ variable │         │
│          │        │          │          │       │       │ $FOO     │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ metric_… │ script │ generic… │ None     │ None  │ None  │ capture  │ /home/… │
│          │        │          │          │       │       │ result   │         │
│          │        │          │          │       │       │ metric   │         │
│          │        │          │          │       │       │ from     │         │
│          │        │          │          │       │       │ output   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ unskipp… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test is  │         │
│          │        │          │          │       │       │ not      │         │
│          │        │          │          │       │       │ skipped  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ test1/d… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will     │         │
│          │        │          │          │       │       │ pass     │         │
│          │        │          │          │       │       │ with     │         │
│          │        │          │          │       │       │ exit 1   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ test2/f… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will run │         │
│          │        │          │          │       │       │ if test1 │         │
│          │        │          │          │       │       │ has      │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 1        │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ test3/7… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will run │         │
│          │        │          │          │       │       │ if test1 │         │
│          │        │          │          │       │       │ has      │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 1 and    │         │
│          │        │          │          │       │       │ test2    │         │
│          │        │          │          │       │       │ has      │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 2        │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ bash_lo… │ script │ generic… │ None     │ None  │ None  │ customi… │ /home/… │
│          │        │          │          │       │       │ shebang  │         │
│          │        │          │          │       │       │ line     │         │
│          │        │          │          │       │       │ with     │         │
│          │        │          │          │       │       │ bash     │         │
│          │        │          │          │       │       │ login    │         │
│          │        │          │          │       │       │ shell    │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ bash_no… │ script │ generic… │ None     │ None  │ None  │ customi… │ /home/… │
│          │        │          │          │       │       │ shebang  │         │
│          │        │          │          │       │       │ line     │         │
│          │        │          │          │       │       │ with     │         │
│          │        │          │          │       │       │ default  │         │
│          │        │          │          │       │       │ bash     │         │
│          │        │          │          │       │       │ (nonlog… │         │
│          │        │          │          │       │       │ shell    │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ gcc_ver… │ script │ generic… │ None     │ None  │ None  │ Print    │ /home/… │
│          │        │          │          │       │       │ gcc      │         │
│          │        │          │          │       │       │ version  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ create_… │ script │ generic… │ None     │ None  │ None  │ Create a │ /home/… │
│          │        │          │          │       │       │ burst    │         │
│          │        │          │          │       │       │ buffer   │         │
│          │        │          │          │       │       │ for      │         │
│          │        │          │          │       │       │ multiple │         │
│          │        │          │          │       │       │ executo… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ create_… │ script │ generic… │ None     │ None  │ None  │ Create a │ /home/… │
│          │        │          │          │       │       │ burst    │         │
│          │        │          │          │       │       │ buffer   │         │
│          │        │          │          │       │       │ for      │         │
│          │        │          │          │       │       │ multiple │         │
│          │        │          │          │       │       │ executo… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ assert_… │ script │ generic… │ None     │ None  │ None  │ An       │ /home/… │
│          │        │          │          │       │       │ invalid  │         │
│          │        │          │          │       │       │ metric   │         │
│          │        │          │          │       │       │ name     │         │
│          │        │          │          │       │       │ will     │         │
│          │        │          │          │       │       │ cause    │         │
│          │        │          │          │       │       │ failure  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ assert_… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will     │         │
│          │        │          │          │       │       │ fail     │         │
│          │        │          │          │       │       │ because  │         │
│          │        │          │          │       │       │ there is │         │
│          │        │          │          │       │       │ a        │         │
│          │        │          │          │       │       │ mismatch │         │
│          │        │          │          │       │       │ in       │         │
│          │        │          │          │       │       │ metric x │         │
│          │        │          │          │       │       │ assert   │         │
│          │        │          │          │       │       │ equality │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ hello_w… │ script │ generic… │ None     │ None  │ None  │ hello    │ /home/… │
│          │        │          │          │       │       │ world    │         │
│          │        │          │          │       │       │ example  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ executo… │ script │ generic… │ None     │ None  │ None  │ Declari… │ /home/… │
│          │        │          │          │       │       │ env and  │         │
│          │        │          │          │       │       │ vars by  │         │
│          │        │          │          │       │       │ executo… │         │
│          │        │          │          │       │       │ section  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ executo… │ script │ generic… │ None     │ None  │ None  │ Declari… │ /home/… │
│          │        │          │          │       │       │ env and  │         │
│          │        │          │          │       │       │ vars by  │         │
│          │        │          │          │       │       │ executo… │         │
│          │        │          │          │       │       │ section  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ runtime… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will     │         │
│          │        │          │          │       │       │ sleep 5  │         │
│          │        │          │          │       │       │ second   │         │
│          │        │          │          │       │       │ but will │         │
│          │        │          │          │       │       │ fail due │         │
│          │        │          │          │       │       │ to       │         │
│          │        │          │          │       │       │ runtime  │         │
│          │        │          │          │       │       │ 2sec     │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ runtime… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will run │         │
│          │        │          │          │       │       │ when     │         │
│          │        │          │          │       │       │ runtime… │         │
│          │        │          │          │       │       │ is PASS  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ runtime… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will run │         │
│          │        │          │          │       │       │ when     │         │
│          │        │          │          │       │       │ runtime… │         │
│          │        │          │          │       │       │ is FAIL  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ file_an… │ script │ generic… │ None     │ None  │ None  │ status   │ /home/… │
│          │        │          │          │       │       │ check    │         │
│          │        │          │          │       │       │ for      │         │
│          │        │          │          │       │       │ files    │         │
│          │        │          │          │       │       │ and      │         │
│          │        │          │          │       │       │ directo… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ combine… │ script │ generic… │ None     │ None  │ None  │ status   │ /home/… │
│          │        │          │          │       │       │ check    │         │
│          │        │          │          │       │       │ for      │         │
│          │        │          │          │       │       │ files    │         │
│          │        │          │          │       │       │ and      │         │
│          │        │          │          │       │       │ directo… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ timelim… │ script │ generic… │ None     │ None  │ None  │ Run a    │ /home/… │
│          │        │          │          │       │       │ sleep    │         │
│          │        │          │          │       │       │ job for  │         │
│          │        │          │          │       │       │ 2        │         │
│          │        │          │          │       │       │ seconds  │         │
│          │        │          │          │       │       │ and test │         │
│          │        │          │          │       │       │ pass if  │         │
│          │        │          │          │       │       │ its      │         │
│          │        │          │          │       │       │ within   │         │
│          │        │          │          │       │       │ 1.0-3.0… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ timelim… │ script │ generic… │ None     │ None  │ None  │ Run a    │ /home/… │
│          │        │          │          │       │       │ sleep    │         │
│          │        │          │          │       │       │ job for  │         │
│          │        │          │          │       │       │ 2        │         │
│          │        │          │          │       │       │ seconds  │         │
│          │        │          │          │       │       │ and test │         │
│          │        │          │          │       │       │ pass if  │         │
│          │        │          │          │       │       │ its      │         │
│          │        │          │          │       │       │ exceeds  │         │
│          │        │          │          │       │       │ min time │         │
│          │        │          │          │       │       │ of 1.0   │         │
│          │        │          │          │       │       │ sec      │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ timelim… │ script │ generic… │ None     │ None  │ None  │ Run a    │ /home/… │
│          │        │          │          │       │       │ sleep    │         │
│          │        │          │          │       │       │ job for  │         │
│          │        │          │          │       │       │ 2        │         │
│          │        │          │          │       │       │ seconds  │         │
│          │        │          │          │       │       │ and test │         │
│          │        │          │          │       │       │ pass if  │         │
│          │        │          │          │       │       │ it's     │         │
│          │        │          │          │       │       │ within   │         │
│          │        │          │          │       │       │ max      │         │
│          │        │          │          │       │       │ time:    │         │
│          │        │          │          │       │       │ 5.0 sec  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ timelim… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ fails    │         │
│          │        │          │          │       │       │ because  │         │
│          │        │          │          │       │       │ it runs  │         │
│          │        │          │          │       │       │ less     │         │
│          │        │          │          │       │       │ than     │         │
│          │        │          │          │       │       │ mintime  │         │
│          │        │          │          │       │       │ of 10    │         │
│          │        │          │          │       │       │ second   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ timelim… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ fails    │         │
│          │        │          │          │       │       │ because  │         │
│          │        │          │          │       │       │ it       │         │
│          │        │          │          │       │       │ exceeds  │         │
│          │        │          │          │       │       │ maxtime  │         │
│          │        │          │          │       │       │ of 1.0   │         │
│          │        │          │          │       │       │ second   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ status_… │ script │ generic… │ None     │ None  │ None  │ define   │ /home/… │
│          │        │          │          │       │       │ status   │         │
│          │        │          │          │       │       │ per      │         │
│          │        │          │          │       │       │ executor │         │
│          │        │          │          │       │       │ type.    │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ status_… │ script │ generic… │ None     │ None  │ None  │ define   │ /home/… │
│          │        │          │          │       │       │ status   │         │
│          │        │          │          │       │       │ per      │         │
│          │        │          │          │       │       │ executor │         │
│          │        │          │          │       │       │ type.    │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ jobA/7d… │ script │ generic… │ None     │ None  │ None  │ no job   │ /home/… │
│          │        │          │          │       │       │ depende… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ jobB/dc… │ script │ generic… │ None     │ None  │ None  │ job      │ /home/… │
│          │        │          │          │       │       │ depende… │         │
│          │        │          │          │       │       │ on jobA  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ jobC/a5… │ script │ generic… │ None     │ None  │ None  │ job      │ /home/… │
│          │        │          │          │       │       │ depende… │         │
│          │        │          │          │       │       │ on jobA  │         │
│          │        │          │          │       │       │ and jobB │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ _bin_sh… │ script │ generic… │ None     │ None  │ None  │ /bin/sh  │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ example  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ _bin_ba… │ script │ generic… │ None     │ None  │ None  │ /bin/ba… │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ example  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ bash_sh… │ script │ generic… │ None     │ None  │ None  │ bash     │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ example  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ sh_shel… │ script │ generic… │ None     │ None  │ None  │ sh shell │ /home/… │
│          │        │          │          │       │       │ example  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ shell_o… │ script │ generic… │ None     │ None  │ None  │ shell    │ /home/… │
│          │        │          │          │       │       │ options  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ string_… │ script │ generic… │ None     │ None  │ None  │ tags can │ /home/… │
│          │        │          │          │       │       │ be a     │         │
│          │        │          │          │       │       │ string   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ list_of… │ script │ generic… │ None     │ None  │ None  │ tags can │ /home/… │
│          │        │          │          │       │       │ be a     │         │
│          │        │          │          │       │       │ list of  │         │
│          │        │          │          │       │       │ strings  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ variabl… │ script │ generic… │ None     │ None  │ None  │ Declare  │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ variabl… │         │
│          │        │          │          │       │       │ in bash  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ status_… │ script │ generic… │ None     │ None  │ None  │ Pass     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ based on │         │
│          │        │          │          │       │       │ regular  │         │
│          │        │          │          │       │       │ express… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ status_… │ script │ generic… │ None     │ None  │ None  │ Pass     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ based on │         │
│          │        │          │          │       │       │ regular  │         │
│          │        │          │          │       │       │ express… │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
summary_example/945d4dd2: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/summary_example/summary_example/945d4dd2
summary_example/945d4dd2: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/summary_example/summary_example/945d4dd2/stage
summary_example/945d4dd2: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/summary_example/summary_example/945d4dd2/summary_example_build.sh
add_numbers/f7f73072: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/add_numbers/add_numbers/f7f73072
add_numbers/f7f73072: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/add_numbers/add_numbers/f7f73072/stage
add_numbers/f7f73072: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/add_numbers/add_numbers/f7f73072/add_numbers_build.sh
stream_test/078e49be: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_ge/stream_test/078e49be
stream_test/078e49be: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_ge/stream_test/078e49be/stage
stream_test/078e49be: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_ge/stream_test/078e49be/stream_test_build.sh
csh_shell/bf427d60: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/csh_shell_examples/csh_shell/bf427d60
csh_shell/bf427d60: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/csh_shell_examples/csh_shell/bf427d60/stage
csh_shell/bf427d60: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/csh_shell_examples/csh_shell/bf427d60/csh_shell_build.sh
assert_range_ex/f6e87511: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_range/assert_range_ex/f6e87511
assert_range_ex/f6e87511: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_range/assert_range_ex/f6e87511/stage
assert_range_ex/f6e87511: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_range/assert_range_ex/f6e87511/assert_range_ex_build.sh
pass_test/aa4d49b1: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex3/pass_test/aa4d49b1
pass_test/aa4d49b1: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex3/pass_test/aa4d49b1/stage
pass_test/aa4d49b1: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex3/pass_test/aa4d49b1/pass_test_build.sh
fail_test/f6d96854: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex3/fail_test/f6d96854
fail_test/f6d96854: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex3/fail_test/f6d96854/stage
fail_test/f6d96854: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex3/fail_test/f6d96854/fail_test_build.sh
pass_and_fail_test/aa27dccd: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex3/pass_and_fail_test/aa27dccd
pass_and_fail_test/aa27dccd: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex3/pass_and_fail_test/aa27dccd/stage
pass_and_fail_test/aa27dccd: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex3/pass_and_fail_test/aa27dccd/pass_and_fail_test_build.sh
final_test/d65d2530: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex3/final_test/d65d2530
final_test/d65d2530: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex3/final_test/d65d2530/stage
final_test/d65d2530: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex3/final_test/d65d2530/final_test_build.sh
executors_vars_env_declaration/f6193865: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/executors_var_env_declaration/executors_vars_env_declaration/f6193865
executors_vars_env_declaration/f6193865: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/executors_var_env_declaration/executors_vars_env_declaration/f6193865/stage
executors_vars_env_declaration/f6193865: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/executors_var_env_declaration/executors_vars_env_declaration/f6193865/executors_vars_env_declaration_build.sh
executors_vars_env_declaration/8a5919e1: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/executors_var_env_declaration/executors_vars_env_declaration/8a5919e1
executors_vars_env_declaration/8a5919e1: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/executors_var_env_declaration/executors_vars_env_declaration/8a5919e1/stage
executors_vars_env_declaration/8a5919e1: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/executors_var_env_declaration/executors_vars_env_declaration/8a5919e1/executors_vars_env_declaration_build.sh
status_exists/c3fcbf7c: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/exists/status_exists/c3fcbf7c
status_exists/c3fcbf7c: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/exists/status_exists/c3fcbf7c/stage
status_exists/c3fcbf7c: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/exists/status_exists/c3fcbf7c/status_exists_build.sh
status_exists_failure/f8d3aa6e: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/exists/status_exists_failure/f8d3aa6e
status_exists_failure/f8d3aa6e: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/exists/status_exists_failure/f8d3aa6e/stage
status_exists_failure/f8d3aa6e: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/exists/status_exists_failure/f8d3aa6e/status_exists_failure_build.sh
circle_area/78201755: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/78201755
circle_area/78201755: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/78201755/stage
circle_area/78201755: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/78201755/circle_area_build.sh
exit1_fail/2c2d1a8a: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/2c2d1a8a
exit1_fail/2c2d1a8a: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/2c2d1a8a/stage
exit1_fail/2c2d1a8a: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/2c2d1a8a/exit1_fail_build.sh
exit1_pass/5a648d91: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/5a648d91
exit1_pass/5a648d91: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/5a648d91/stage
exit1_pass/5a648d91: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/5a648d91/exit1_pass_build.sh
returncode_list_mismatch/0392b1b2: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/0392b1b2
returncode_list_mismatch/0392b1b2: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/0392b1b2/stage
returncode_list_mismatch/0392b1b2: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/0392b1b2/returncode_list_mismatch_build.sh
returncode_int_match/3922952a: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/3922952a
returncode_int_match/3922952a: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/3922952a/stage
returncode_int_match/3922952a: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/3922952a/returncode_int_match_build.sh
always_pass/529ec8ac: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/explicit_state/always_pass/529ec8ac
always_pass/529ec8ac: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/explicit_state/always_pass/529ec8ac/stage
always_pass/529ec8ac: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/explicit_state/always_pass/529ec8ac/always_pass_build.sh
always_fail/c1ee6460: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/explicit_state/always_fail/c1ee6460
always_fail/c1ee6460: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/explicit_state/always_fail/c1ee6460/stage
always_fail/c1ee6460: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/explicit_state/always_fail/c1ee6460/always_fail_build.sh
test_fail_returncode_match/6fefb095: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/explicit_state/test_fail_returncode_match/6fefb095
test_fail_returncode_match/6fefb095: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/explicit_state/test_fail_returncode_match/6fefb095/stage
test_fail_returncode_match/6fefb095: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/explicit_state/test_fail_returncode_match/6fefb095/test_fail_returncode_match_build.sh
test_pass_returncode_mismatch/0bb59a3b: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/explicit_state/test_pass_returncode_mismatch/0bb59a3b
test_pass_returncode_mismatch/0bb59a3b: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/explicit_state/test_pass_returncode_mismatch/0bb59a3b/stage
test_pass_returncode_mismatch/0bb59a3b: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/explicit_state/test_pass_returncode_mismatch/0bb59a3b/test_pass_returncode_mismatch_build.sh
assert_eq_example/a8385cf1: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_eq/assert_eq_example/a8385cf1
assert_eq_example/a8385cf1: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_eq/assert_eq_example/a8385cf1/stage
assert_eq_example/a8385cf1: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_eq/assert_eq_example/a8385cf1/assert_eq_example_build.sh
bash_env_variables/ce72f0db: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/environment/bash_env_variables/ce72f0db
bash_env_variables/ce72f0db: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/environment/bash_env_variables/ce72f0db/stage
bash_env_variables/ce72f0db: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/environment/bash_env_variables/ce72f0db/bash_env_variables_build.sh
csh_env_declaration/7c40fdc5: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/csh_env_declaration/7c40fdc5
csh_env_declaration/7c40fdc5: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/csh_env_declaration/7c40fdc5/stage
csh_env_declaration/7c40fdc5: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/csh_env_declaration/7c40fdc5/csh_env_declaration_build.sh
tcsh_env_declaration/ae9042fd: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/tcsh_env_declaration/ae9042fd
tcsh_env_declaration/ae9042fd: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/tcsh_env_declaration/ae9042fd/stage
tcsh_env_declaration/ae9042fd: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.csh/environment/tcsh_env_declaration/ae9042fd/tcsh_env_declaration_build.sh
sleep/c096ef5c: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/c096ef5c
sleep/c096ef5c: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/c096ef5c/stage
sleep/c096ef5c: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/c096ef5c/sleep_build.sh
file_exists_pass/13694524: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/file_exists_with_number/file_exists_pass/13694524
file_exists_pass/13694524: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/file_exists_with_number/file_exists_pass/13694524/stage
file_exists_pass/13694524: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/file_exists_with_number/file_exists_pass/13694524/file_exists_pass_build.sh
python_hello/c2669283: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/c2669283
python_hello/c2669283: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/c2669283/stage
python_hello/c2669283: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/c2669283/python_hello_build.sh
multiple_executors/8b822007: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/executor_regex_script/multiple_executors/8b822007
multiple_executors/8b822007: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/executor_regex_script/multiple_executors/8b822007/stage
multiple_executors/8b822007: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/executor_regex_script/multiple_executors/8b822007/multiple_executors_build.sh
multiple_executors/7bf19cde: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/executor_regex_script/multiple_executors/7bf19cde
multiple_executors/7bf19cde: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/executor_regex_script/multiple_executors/7bf19cde/stage
multiple_executors/7bf19cde: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/executor_regex_script/multiple_executors/7bf19cde/multiple_executors_build.sh
foo_bar/327af527: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/maintainers_example/foo_bar/327af527
foo_bar/327af527: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/maintainers_example/foo_bar/327af527/stage
foo_bar/327af527: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/maintainers_example/foo_bar/327af527/foo_bar_build.sh
metric_regex_example/2ba806fb: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/metrics_regex/metric_regex_example/2ba806fb
metric_regex_example/2ba806fb: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/metrics_regex/metric_regex_example/2ba806fb/stage
metric_regex_example/2ba806fb: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/metrics_regex/metric_regex_example/2ba806fb/metric_regex_example_build.sh
unskipped/1780885c: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/skip_tests/unskipped/1780885c
unskipped/1780885c: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/skip_tests/unskipped/1780885c/stage
unskipped/1780885c: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/skip_tests/unskipped/1780885c/unskipped_build.sh
test1/dc117985: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex2/test1/dc117985
test1/dc117985: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex2/test1/dc117985/stage
test1/dc117985: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex2/test1/dc117985/test1_build.sh
test2/f89831c9: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex2/test2/f89831c9
test2/f89831c9: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex2/test2/f89831c9/stage
test2/f89831c9: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex2/test2/f89831c9/test2_build.sh
test3/7885f38f: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex2/test3/7885f38f
test3/7885f38f: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex2/test3/7885f38f/stage
test3/7885f38f: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex2/test3/7885f38f/test3_build.sh
bash_login_shebang/f12f0014: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/shebang/bash_login_shebang/f12f0014
bash_login_shebang/f12f0014: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/shebang/bash_login_shebang/f12f0014/stage
bash_login_shebang/f12f0014: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/shebang/bash_login_shebang/f12f0014/bash_login_shebang_build.sh
bash_nonlogin_shebang/bdfaa9f2: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/shebang/bash_nonlogin_shebang/bdfaa9f2
bash_nonlogin_shebang/bdfaa9f2: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/shebang/bash_nonlogin_shebang/bdfaa9f2/stage
bash_nonlogin_shebang/bdfaa9f2: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/shebang/bash_nonlogin_shebang/bdfaa9f2/bash_nonlogin_shebang_build.sh
gcc_version/c3495b9d: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/gcc_version/gcc_version/c3495b9d
gcc_version/c3495b9d: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/gcc_version/gcc_version/c3495b9d/stage
gcc_version/c3495b9d: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/gcc_version/gcc_version/c3495b9d/gcc_version_build.sh
create_burst_buffer_executors/ca34298c: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/burstbuffer_datawarp_executors/create_burst_buffer_executors/ca34298c
create_burst_buffer_executors/ca34298c: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/burstbuffer_datawarp_executors/create_burst_buffer_executors/ca34298c/stage
create_burst_buffer_executors/ca34298c: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/burstbuffer_datawarp_executors/create_burst_buffer_executors/ca34298c/create_burst_buffer_executors_build.sh
create_burst_buffer_executors/b2b43e57: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/burstbuffer_datawarp_executors/create_burst_buffer_executors/b2b43e57
create_burst_buffer_executors/b2b43e57: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/burstbuffer_datawarp_executors/create_burst_buffer_executors/b2b43e57/stage
create_burst_buffer_executors/b2b43e57: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/burstbuffer_datawarp_executors/create_burst_buffer_executors/b2b43e57/create_burst_buffer_executors_build.sh
assert_eq_invalid_metric/0800596a: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/0800596a
assert_eq_invalid_metric/0800596a: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/0800596a/stage
assert_eq_invalid_metric/0800596a: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/0800596a/assert_eq_invalid_metric_build.sh
assert_eq_mismatch/25ef03a1: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/25ef03a1
assert_eq_mismatch/25ef03a1: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/25ef03a1/stage
assert_eq_mismatch/25ef03a1: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/25ef03a1/assert_eq_mismatch_build.sh
hello_world/b6eabfd2: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/hello_world/hello_world/b6eabfd2
hello_world/b6eabfd2: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/hello_world/hello_world/b6eabfd2/stage
hello_world/b6eabfd2: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/hello_world/hello_world/b6eabfd2/hello_world_build.sh
executors_sbatch_declaration/d5e6bdff: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/executor_scheduler/executors_sbatch_declaration/d5e6bdff
executors_sbatch_declaration/d5e6bdff: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/executor_scheduler/executors_sbatch_declaration/d5e6bdff/stage
executors_sbatch_declaration/d5e6bdff: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/executor_scheduler/executors_sbatch_declaration/d5e6bdff/executors_sbatch_declaration_build.sh
executors_sbatch_declaration/3260303d: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/executor_scheduler/executors_sbatch_declaration/3260303d
executors_sbatch_declaration/3260303d: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/executor_scheduler/executors_sbatch_declaration/3260303d/stage
executors_sbatch_declaration/3260303d: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/executor_scheduler/executors_sbatch_declaration/3260303d/executors_sbatch_declaration_build.sh
runtime_test/35e22834: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex4/runtime_test/35e22834
runtime_test/35e22834: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex4/runtime_test/35e22834/stage
runtime_test/35e22834: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex4/runtime_test/35e22834/runtime_test_build.sh
runtime_test_pass/c169fa62: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex4/runtime_test_pass/c169fa62
runtime_test_pass/c169fa62: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex4/runtime_test_pass/c169fa62/stage
runtime_test_pass/c169fa62: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex4/runtime_test_pass/c169fa62/runtime_test_pass_build.sh
runtime_test_fail/85a735e7: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex4/runtime_test_fail/85a735e7
runtime_test_fail/85a735e7: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex4/runtime_test_fail/85a735e7/stage
runtime_test_fail/85a735e7: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex4/runtime_test_fail/85a735e7/runtime_test_fail_build.sh
file_and_dir_checks/52f21e87: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/file_and_dir_check/file_and_dir_checks/52f21e87
file_and_dir_checks/52f21e87: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/file_and_dir_check/file_and_dir_checks/52f21e87/stage
file_and_dir_checks/52f21e87: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/file_and_dir_check/file_and_dir_checks/52f21e87/file_and_dir_checks_build.sh
combined_file_and_dir_checks/d06979a7: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/file_and_dir_check/combined_file_and_dir_checks/d06979a7
combined_file_and_dir_checks/d06979a7: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/file_and_dir_check/combined_file_and_dir_checks/d06979a7/stage
combined_file_and_dir_checks/d06979a7: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/file_and_dir_check/combined_file_and_dir_checks/d06979a7/combined_file_and_dir_checks_build.sh
timelimit_min_max/5c16136b: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_min_max/5c16136b
timelimit_min_max/5c16136b: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_min_max/5c16136b/stage
timelimit_min_max/5c16136b: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_min_max/5c16136b/timelimit_min_max_build.sh
timelimit_min/d8f9d789: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_min/d8f9d789
timelimit_min/d8f9d789: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_min/d8f9d789/stage
timelimit_min/d8f9d789: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_min/d8f9d789/timelimit_min_build.sh
timelimit_max/fd0460a1: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_max/fd0460a1
timelimit_max/fd0460a1: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_max/fd0460a1/stage
timelimit_max/fd0460a1: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_max/fd0460a1/timelimit_max_build.sh
timelimit_min_fail/a3e0d54e: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_min_fail/a3e0d54e
timelimit_min_fail/a3e0d54e: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_min_fail/a3e0d54e/stage
timelimit_min_fail/a3e0d54e: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_min_fail/a3e0d54e/timelimit_min_fail_build.sh
timelimit_max_fail/0b8af642: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_max_fail/0b8af642
timelimit_max_fail/0b8af642: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_max_fail/0b8af642/stage
timelimit_max_fail/0b8af642: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/runtime_status_test/timelimit_max_fail/0b8af642/timelimit_max_fail_build.sh
status_returncode_by_executors/6627a41e: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/status_by_executors/status_returncode_by_executors/6627a41e
status_returncode_by_executors/6627a41e: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/status_by_executors/status_returncode_by_executors/6627a41e/stage
status_returncode_by_executors/6627a41e: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/status_by_executors/status_returncode_by_executors/6627a41e/status_returncode_by_executors_build.sh
status_returncode_by_executors/d59449cc: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/status_by_executors/status_returncode_by_executors/d59449cc
status_returncode_by_executors/d59449cc: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/status_by_executors/status_returncode_by_executors/d59449cc/stage
status_returncode_by_executors/d59449cc: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/status_by_executors/status_returncode_by_executors/d59449cc/status_returncode_by_executors_build.sh
jobA/7d7bd2e6: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex1/jobA/7d7bd2e6
jobA/7d7bd2e6: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex1/jobA/7d7bd2e6/stage
jobA/7d7bd2e6: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex1/jobA/7d7bd2e6/jobA_build.sh
jobB/dc086dcd: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex1/jobB/dc086dcd
jobB/dc086dcd: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex1/jobB/dc086dcd/stage
jobB/dc086dcd: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex1/jobB/dc086dcd/jobB_build.sh
jobC/a5798a6d: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex1/jobC/a5798a6d
jobC/a5798a6d: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex1/jobC/a5798a6d/stage
jobC/a5798a6d: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/ex1/jobC/a5798a6d/jobC_build.sh
_bin_sh_shell/5f5518a9: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/shell_examples/_bin_sh_shell/5f5518a9
_bin_sh_shell/5f5518a9: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/shell_examples/_bin_sh_shell/5f5518a9/stage
_bin_sh_shell/5f5518a9: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/shell_examples/_bin_sh_shell/5f5518a9/_bin_sh_shell_build.sh
_bin_bash_shell/d30dda71: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/shell_examples/_bin_bash_shell/d30dda71
_bin_bash_shell/d30dda71: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/shell_examples/_bin_bash_shell/d30dda71/stage
_bin_bash_shell/d30dda71: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/shell_examples/_bin_bash_shell/d30dda71/_bin_bash_shell_build.sh
bash_shell/97b90950: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/shell_examples/bash_shell/97b90950
bash_shell/97b90950: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/shell_examples/bash_shell/97b90950/stage
bash_shell/97b90950: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/shell_examples/bash_shell/97b90950/bash_shell_build.sh
sh_shell/44afd146: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/shell_examples/sh_shell/44afd146
sh_shell/44afd146: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/shell_examples/sh_shell/44afd146/stage
sh_shell/44afd146: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/shell_examples/sh_shell/44afd146/sh_shell_build.sh
shell_options/7152ba2c: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/shell_examples/shell_options/7152ba2c
shell_options/7152ba2c: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/shell_examples/shell_options/7152ba2c/stage
shell_options/7152ba2c: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.sh/shell_examples/shell_options/7152ba2c/shell_options_build.sh
string_tag/6379d42e: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/string_tag/6379d42e
string_tag/6379d42e: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/string_tag/6379d42e/stage
string_tag/6379d42e: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/string_tag/6379d42e/string_tag_build.sh
list_of_strings_tags/36af63de: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/list_of_strings_tags/36af63de
list_of_strings_tags/36af63de: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/list_of_strings_tags/36af63de/stage
list_of_strings_tags/36af63de: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/tags_example/list_of_strings_tags/36af63de/list_of_strings_tags_build.sh
variables_bash/a925d92c: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/a925d92c
variables_bash/a925d92c: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/a925d92c/stage
variables_bash/a925d92c: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/a925d92c/variables_bash_build.sh
status_regex_pass/760310eb: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/status_regex/status_regex_pass/760310eb
status_regex_pass/760310eb: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/status_regex/status_regex_pass/760310eb/stage
status_regex_pass/760310eb: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/status_regex/status_regex_pass/760310eb/status_regex_pass_build.sh
status_regex_fail/c821c2a7: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/status_regex/status_regex_fail/c821c2a7
status_regex_fail/c821c2a7: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/status_regex/status_regex_fail/c821c2a7/stage
status_regex_fail/c821c2a7: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/status_regex/status_regex_fail/c821c2a7/status_regex_fail_build.sh

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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:41                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝
                            Buildspecs By Tag=python                            
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/python-shell.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/python-hello.yml: VALID
Total builder objects created: 2
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ circle_… │ script │ generic… │ None     │ None  │ None  │ Calcula… │ /home/… │
│          │        │          │          │       │       │ circle   │         │
│          │        │          │          │       │       │ of area  │         │
│          │        │          │          │       │       │ given a  │         │
│          │        │          │          │       │       │ radius   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ python_… │ script │ generic… │ None     │ None  │ None  │ Hello    │ /home/… │
│          │        │          │          │       │       │ World    │         │
│          │        │          │          │       │       │ python   │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
circle_area/79115559: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/79115559
circle_area/79115559: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/79115559/stage
circle_area/79115559: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/79115559/circle_area_build.sh
python_hello/566c1ad3: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/566c1ad3
python_hello/566c1ad3: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/566c1ad3/stage
python_hello/566c1ad3: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/566c1ad3/python_hello_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
circle_area/79115559 does not have any dependencies adding test to queue
python_hello/566c1ad3 does not have any dependencies adding test to queue
circle_area/79115559: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/79115559/stage
circle_area/79115559: Running Test via command: bash --norc --noprofile -eo pipefail circle_area_build.sh
circle_area/79115559: Test completed in 0.031553 seconds
circle_area/79115559: Test completed with returncode: 0
circle_area/79115559: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/79115559/circle_area.out
circle_area/79115559: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/79115559/circle_area.err
python_hello/566c1ad3: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/566c1ad3/stage
python_hello/566c1ad3: Running Test via command: bash --norc --noprofile -eo pipefail python_hello_build.sh
python_hello/566c1ad3: Test completed in 0.030596 seconds
python_hello/566c1ad3: Test completed with returncode: 0
python_hello/566c1ad3: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/566c1ad3/python_hello.out
python_hello/566c1ad3: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-hello/python_hello/566c1ad3/python_hello.err
In this iteration we are going to run the following tests: [circle_area/79115559, python_hello/566c1ad3]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ python_hello │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.030596 │
│ /566c1ad3    │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ circle_area/ │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.031553 │
│ 79115559     │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 2 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_90ciqq9i.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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:41                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝
                            Buildspecs By Tag=python                            
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


Total Discovered Buildspecs:  2
Total Excluded Buildspecs:  0
Detected Buildspecs after exclusion:  2
────────────────────────────── Parsing Buildspecs ──────────────────────────────
python_hello/5e837c1a is excluded since its not using batch executor
circle_area/d66cc865 is excluded since its not using batch executor
Valid Buildspecs: 2
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/python-hello.yml: VALID
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/tutorials/python-shell.yml: VALID
                            Buildspecs Filtered out                             
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ buildspecs                                                                   ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
└──────────────────────────────────────────────────────────────────────────────┘

buildtest is unable to create any tests because there are no valid buildspecs. 

Please see logfile: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:42                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/vars.yml: VALID
Total builder objects created: 1
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variabl… │ script │ generic… │ None     │ None  │ None  │ Declare  │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ variabl… │         │
│          │        │          │          │       │       │ in bash  │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘

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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:42                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/vars.yml: VALID
Total builder objects created: 1
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variabl… │ script │ generic… │ None     │ None  │ None  │ Declare  │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ variabl… │         │
│          │        │          │          │       │       │ in bash  │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
variables_bash/73471bd4: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/73471bd4
variables_bash/73471bd4: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/73471bd4/stage
variables_bash/73471bd4: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/73471bd4/variables_bash_build.sh

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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:43                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/invalid_buildspec_section.yml: INVALID

buildtest is unable to create any tests because there are no valid buildspecs. 

Please see logfile: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:43                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/invalid_executor.yml: VALID
                            Buildspecs Filtered out                             
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ buildspecs                                                                   ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… │
└──────────────────────────────────────────────────────────────────────────────┘

buildtest is unable to create any tests because there are no valid buildspecs. 

Please see logfile: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/buildtest.log

Rebuild Tests

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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:44                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/python-shell.yml: VALID
Total builder objects created: 3
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ circle_… │ script │ generic… │ None     │ None  │ None  │ Calcula… │ /home/… │
│          │        │          │          │       │       │ circle   │         │
│          │        │          │          │       │       │ of area  │         │
│          │        │          │          │       │       │ given a  │         │
│          │        │          │          │       │       │ radius   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ circle_… │ script │ generic… │ None     │ None  │ None  │ Calcula… │ /home/… │
│          │        │          │          │       │       │ circle   │         │
│          │        │          │          │       │       │ of area  │         │
│          │        │          │          │       │       │ given a  │         │
│          │        │          │          │       │       │ radius   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ circle_… │ script │ generic… │ None     │ None  │ None  │ Calcula… │ /home/… │
│          │        │          │          │       │       │ circle   │         │
│          │        │          │          │       │       │ of area  │         │
│          │        │          │          │       │       │ given a  │         │
│          │        │          │          │       │       │ radius   │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
circle_area/630ccb9c: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/630ccb9c
circle_area/630ccb9c: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/630ccb9c/stage
circle_area/630ccb9c: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/630ccb9c/circle_area_build.sh
circle_area/fde74fe4: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/fde74fe4
circle_area/fde74fe4: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/fde74fe4/stage
circle_area/fde74fe4: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/fde74fe4/circle_area_build.sh
circle_area/95ee5943: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/95ee5943
circle_area/95ee5943: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/95ee5943/stage
circle_area/95ee5943: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/95ee5943/circle_area_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
circle_area/fde74fe4 does not have any dependencies adding test to queue
circle_area/630ccb9c does not have any dependencies adding test to queue
circle_area/95ee5943 does not have any dependencies adding test to queue
circle_area/fde74fe4: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/fde74fe4/stage
circle_area/fde74fe4: Running Test via command: bash --norc --noprofile -eo pipefail circle_area_build.sh
circle_area/fde74fe4: Test completed in 0.030944 seconds
circle_area/fde74fe4: Test completed with returncode: 0
circle_area/fde74fe4: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/fde74fe4/circle_area.out
circle_area/fde74fe4: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/fde74fe4/circle_area.err
circle_area/630ccb9c: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/630ccb9c/stage
circle_area/630ccb9c: Running Test via command: bash --norc --noprofile -eo pipefail circle_area_build.sh
circle_area/630ccb9c: Test completed in 0.030531 seconds
circle_area/630ccb9c: Test completed with returncode: 0
circle_area/630ccb9c: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/630ccb9c/circle_area.out
circle_area/630ccb9c: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/630ccb9c/circle_area.err
circle_area/95ee5943: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/95ee5943/stage
circle_area/95ee5943: Running Test via command: bash --norc --noprofile -eo pipefail circle_area_build.sh
circle_area/95ee5943: Test completed in 0.030697 seconds
circle_area/95ee5943: Test completed with returncode: 0
circle_area/95ee5943: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/95ee5943/circle_area.out
circle_area/95ee5943: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/python-shell/circle_area/95ee5943/circle_area.err
In this iteration we are going to run the following tests: [circle_area/fde74fe4, circle_area/630ccb9c, circle_area/95ee5943]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ circle_area/ │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.030944 │
│ fde74fe4     │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ circle_area/ │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.030531 │
│ 630ccb9c     │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ circle_area/ │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.030697 │
│ 95ee5943     │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 3 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_ngfb61qu.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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:44                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝
                             Buildspecs By Tag=fail                             
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/test_status/pass_returncode.yml: VALID
Total builder objects created: 8
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ exit1_f… │ script │ generic… │ None     │ None  │ None  │ exit 1   │ /home/… │
│          │        │          │          │       │       │ by       │         │
│          │        │          │          │       │       │ default  │         │
│          │        │          │          │       │       │ is FAIL  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_p… │ script │ generic… │ None     │ None  │ None  │ report   │ /home/… │
│          │        │          │          │       │       │ exit 1   │         │
│          │        │          │          │       │       │ as PASS  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnc… │ script │ generic… │ None     │ None  │ None  │ exit 2   │ /home/… │
│          │        │          │          │       │       │ failed   │         │
│          │        │          │          │       │       │ since it │         │
│          │        │          │          │       │       │ failed   │         │
│          │        │          │          │       │       │ to match │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 1        │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnc… │ script │ generic… │ None     │ None  │ None  │ exit 128 │ /home/… │
│          │        │          │          │       │       │ matches  │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 128      │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_f… │ script │ generic… │ None     │ None  │ None  │ exit 1   │ /home/… │
│          │        │          │          │       │       │ by       │         │
│          │        │          │          │       │       │ default  │         │
│          │        │          │          │       │       │ is FAIL  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ exit1_p… │ script │ generic… │ None     │ None  │ None  │ report   │ /home/… │
│          │        │          │          │       │       │ exit 1   │         │
│          │        │          │          │       │       │ as PASS  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnc… │ script │ generic… │ None     │ None  │ None  │ exit 2   │ /home/… │
│          │        │          │          │       │       │ failed   │         │
│          │        │          │          │       │       │ since it │         │
│          │        │          │          │       │       │ failed   │         │
│          │        │          │          │       │       │ to match │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 1        │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ returnc… │ script │ generic… │ None     │ None  │ None  │ exit 128 │ /home/… │
│          │        │          │          │       │       │ matches  │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 128      │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
exit1_fail/061812fc: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/061812fc
exit1_fail/061812fc: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/061812fc/stage
exit1_fail/061812fc: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/061812fc/exit1_fail_build.sh
exit1_pass/81d5827a: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/81d5827a
exit1_pass/81d5827a: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/81d5827a/stage
exit1_pass/81d5827a: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/81d5827a/exit1_pass_build.sh
returncode_list_mismatch/907785a9: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/907785a9
returncode_list_mismatch/907785a9: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/907785a9/stage
returncode_list_mismatch/907785a9: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/907785a9/returncode_list_mismatch_build.sh
returncode_int_match/858c6d0b: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/858c6d0b
returncode_int_match/858c6d0b: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/858c6d0b/stage
returncode_int_match/858c6d0b: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/858c6d0b/returncode_int_match_build.sh
exit1_fail/9fe7dbb3: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/9fe7dbb3
exit1_fail/9fe7dbb3: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/9fe7dbb3/stage
exit1_fail/9fe7dbb3: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/9fe7dbb3/exit1_fail_build.sh
exit1_pass/bb5d3284: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/bb5d3284
exit1_pass/bb5d3284: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/bb5d3284/stage
exit1_pass/bb5d3284: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/bb5d3284/exit1_pass_build.sh
returncode_list_mismatch/ace6af5e: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/ace6af5e
returncode_list_mismatch/ace6af5e: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/ace6af5e/stage
returncode_list_mismatch/ace6af5e: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/ace6af5e/returncode_list_mismatch_build.sh
returncode_int_match/49b1efe0: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/49b1efe0
returncode_int_match/49b1efe0: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/49b1efe0/stage
returncode_int_match/49b1efe0: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/49b1efe0/returncode_int_match_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
exit1_fail/061812fc does not have any dependencies adding test to queue
exit1_pass/81d5827a does not have any dependencies adding test to queue
exit1_pass/bb5d3284 does not have any dependencies adding test to queue
returncode_list_mismatch/907785a9 does not have any dependencies adding test to queue
returncode_list_mismatch/ace6af5e does not have any dependencies adding test to queue
returncode_int_match/49b1efe0 does not have any dependencies adding test to queue
exit1_fail/9fe7dbb3 does not have any dependencies adding test to queue
returncode_int_match/858c6d0b does not have any dependencies adding test to queue
exit1_fail/061812fc: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/061812fc/stage
exit1_fail/061812fc: Running Test via command: bash --norc --noprofile -eo pipefail exit1_fail_build.sh
exit1_fail/061812fc: Test completed in 0.00561 seconds
exit1_fail/061812fc: Test completed with returncode: 1
exit1_fail/061812fc: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/061812fc/exit1_fail.out
exit1_fail/061812fc: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/061812fc/exit1_fail.err
exit1_pass/81d5827a: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/81d5827a/stage
exit1_pass/81d5827a: Running Test via command: bash --norc --noprofile -eo pipefail exit1_pass_build.sh
exit1_pass/81d5827a: Test completed in 0.005453 seconds
exit1_pass/81d5827a: Test completed with returncode: 1
exit1_pass/81d5827a: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/81d5827a/exit1_pass.out
exit1_pass/81d5827a: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/81d5827a/exit1_pass.err
exit1_pass/81d5827a: Checking returncode - 1 is matched in list [1]
returncode_int_match/858c6d0b: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/858c6d0b/stage
returncode_int_match/858c6d0b: Running Test via command: bash --norc --noprofile -eo pipefail returncode_int_match_build.sh
returncode_int_match/858c6d0b: Test completed in 0.005728 seconds
returncode_int_match/858c6d0b: Test completed with returncode: 128
returncode_int_match/858c6d0b: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/858c6d0b/returncode_int_match.out
returncode_int_match/858c6d0b: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/858c6d0b/returncode_int_match.err
returncode_int_match/858c6d0b: Checking returncode - 128 is matched in list [128]
returncode_list_mismatch/ace6af5e: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/ace6af5e/stage
returncode_list_mismatch/ace6af5e: Running Test via command: bash --norc --noprofile -eo pipefail returncode_list_mismatch_build.sh
returncode_list_mismatch/ace6af5e: Test completed in 0.005634 seconds
returncode_list_mismatch/ace6af5e: Test completed with returncode: 2
returncode_list_mismatch/ace6af5e: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/ace6af5e/returncode_list_mismatch.out
returncode_list_mismatch/ace6af5e: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/ace6af5e/returncode_list_mismatch.err
returncode_list_mismatch/ace6af5e: Checking returncode - 2 is matched in list [1, 3]
returncode_list_mismatch/907785a9: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/907785a9/stage
returncode_list_mismatch/907785a9: Running Test via command: bash --norc --noprofile -eo pipefail returncode_list_mismatch_build.sh
returncode_list_mismatch/907785a9: Test completed in 0.005387 seconds
returncode_list_mismatch/907785a9: Test completed with returncode: 2
returncode_list_mismatch/907785a9: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/907785a9/returncode_list_mismatch.out
returncode_list_mismatch/907785a9: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_list_mismatch/907785a9/returncode_list_mismatch.err
returncode_list_mismatch/907785a9: Checking returncode - 2 is matched in list [1, 3]
returncode_int_match/49b1efe0: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/49b1efe0/stage
returncode_int_match/49b1efe0: Running Test via command: bash --norc --noprofile -eo pipefail returncode_int_match_build.sh
returncode_int_match/49b1efe0: Test completed in 0.005311 seconds
returncode_int_match/49b1efe0: Test completed with returncode: 128
returncode_int_match/49b1efe0: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/49b1efe0/returncode_int_match.out
returncode_int_match/49b1efe0: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/returncode_int_match/49b1efe0/returncode_int_match.err
returncode_int_match/49b1efe0: Checking returncode - 128 is matched in list [128]
exit1_fail/9fe7dbb3: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/9fe7dbb3/stage
exit1_fail/9fe7dbb3: Running Test via command: bash --norc --noprofile -eo pipefail exit1_fail_build.sh
exit1_fail/9fe7dbb3: Test completed in 0.005326 seconds
exit1_fail/9fe7dbb3: Test completed with returncode: 1
exit1_fail/9fe7dbb3: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/9fe7dbb3/exit1_fail.out
exit1_fail/9fe7dbb3: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_fail/9fe7dbb3/exit1_fail.err
exit1_pass/bb5d3284: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/bb5d3284/stage
exit1_pass/bb5d3284: Running Test via command: bash --norc --noprofile -eo pipefail exit1_pass_build.sh
exit1_pass/bb5d3284: Test completed in 0.005353 seconds
exit1_pass/bb5d3284: Test completed with returncode: 1
exit1_pass/bb5d3284: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/bb5d3284/exit1_pass.out
exit1_pass/bb5d3284: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/pass_returncode/exit1_pass/bb5d3284/exit1_pass.err
exit1_pass/bb5d3284: Checking returncode - 1 is matched in list [1]
In this iteration we are going to run the following tests: [exit1_fail/061812fc, exit1_pass/81d5827a, returncode_int_match/858c6d0b, returncode_list_mismatch/ace6af5e, returncode_list_mismatch/907785a9, returncode_int_match/49b1efe0, exit1_fail/9fe7dbb3, exit1_pass/bb5d3284]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ returncode_i │ generic.loc… │ PASS   │ True False    │ 128        │ 0.005311 │
│ nt_match/49b │              │        │ False         │            │          │
│ 1efe0        │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ returncode_l │ generic.loc… │ FAIL   │ False False   │ 2          │ 0.005387 │
│ ist_mismatch │              │        │ False         │            │          │
│ /907785a9    │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ returncode_l │ generic.loc… │ FAIL   │ False False   │ 2          │ 0.005634 │
│ ist_mismatch │              │        │ False         │            │          │
│ /ace6af5e    │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ exit1_fail/9 │ generic.loc… │ FAIL   │ N/A N/A N/A   │ 1          │ 0.005326 │
│ fe7dbb3      │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ exit1_pass/8 │ generic.loc… │ PASS   │ True False    │ 1          │ 0.005453 │
│ 1d5827a      │              │        │ False         │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ exit1_pass/b │ generic.loc… │ PASS   │ True False    │ 1          │ 0.005353 │
│ b5d3284      │              │        │ False         │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ returncode_i │ generic.loc… │ PASS   │ True False    │ 128        │ 0.005728 │
│ nt_match/858 │              │        │ False         │            │          │
│ c6d0b        │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ exit1_fail/0 │ generic.loc… │ FAIL   │ N/A N/A N/A   │ 1          │ 0.00561  │
│ 61812fc      │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 8 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_5140vve3.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/v1.1/bi │
│ n/buildtest:36 in <module>                                                   │
│                                                                              │
│   33                                                                         │
│   34 import buildtest.main                                                   │
│   35                                                                         │
│ ❱ 36 buildtest.main.main()                                                   │
│   37                                                                         │
│                                                                              │
│ ╭───────────────────────────────── locals ─────────────────────────────────╮ │
│ │ __annotations__ = {}                                                     │ │
│ │    __builtins__ = <module 'builtins' (built-in)>                         │ │
│ │      __cached__ = None                                                   │ │
│ │         __doc__ = ':"\n# preferred pythons for running                   │ │
│ │                   buildtest\nPREFERRED_PYTHONS="python3 python"\n'+365   │ │
│ │        __file__ = '/home/docs/checkouts/readthedocs.org/user_builds/bui… │ │
│ │      __loader__ = <_frozen_importlib_external.SourceFileLoader object at │ │
│ │                   0x7f2ea9c39210>                                        │ │
│ │        __name__ = '__main__'                                             │ │
│ │     __package__ = None                                                   │ │
│ │        __spec__ = None                                                   │ │
│ │       buildtest = <module 'buildtest' from                               │ │
│ │                   '/home/docs/checkouts/readthedocs.org/user_builds/bui… │ │
│ │  buildtest_file = '/home/docs/checkouts/readthedocs.org/user_builds/bui… │ │
│ │              os = <module 'os' from                                      │ │
│ │                   '/home/docs/.asdf/installs/python/3.7.15/lib/python3.… │ │
│ │          prefix = '/home/docs/checkouts/readthedocs.org/user_builds/bui… │ │
│ │             sys = <module 'sys' (built-in)>                              │ │
│ ╰──────────────────────────────────────────────────────────────────────────╯ │
│                                                                              │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/bu │
│ ildtest/main.py:174 in main                                                  │
│                                                                              │
│   171 │   │   │   │   unload_modules=args.unload_modules,                    │
│   172 │   │   │   │   rerun=args.rerun,                                      │
│   173 │   │   │   │   executor_type=args.executor_type,                      │
│ ❱ 174 │   │   │   │   timeout=args.timeout,                                  │
│   175 │   │   │   )                                                          │
│   176 │   │   │   cmd.build()                                                │
│   177                                                                        │
│                                                                              │
│ ╭───────────────────────────────── locals ─────────────────────────────────╮ │
│ │               args = Namespace(account=None,                             │ │
│ │                      buildspec=['tutorials/test_status/pass_returncode.… │ │
│ │                      color=None, configfile=None, debug=False,           │ │
│ │                      disable_executor_check=True, editor=None,           │ │
│ │                      exclude=None, executor=None, executor_type=None,    │ │
│ │                      filter=None, helpcolor=False, helpfilter=False,     │ │
│ │                      loglevel='DEBUG', logpath=False, maxpendtime=None,  │ │
│ │                      module_purge=False, modules=None, no_color=False,   │ │
│ │                      nodes=None, pollinterval=None, print_log=False,     │ │
│ │                      procs=None, rebuild=51, remove_stagedir=False,      │ │
│ │                      report=None, rerun=False, retry=1, 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       │ │
│ │                      0x7f2ea7f47c10>                                     │ │
│ │              fname = '/home/docs/checkouts/readthedocs.org/user_builds/… │ │
│ │             logger = <Logger buildtest (DEBUG)>                          │ │
│ │           no_color = False                                               │ │
│ │             parser = ArgumentParser(prog='buildtest', usage='%(prog)s    │ │
│ │                      [options] [COMMANDS]', description='buildtest is a  │ │
│ │                      HPC testing framework for building and running      │ │
│ │                      tests.', formatter_class=<class                     │ │
│ │                      'argparse.RawDescriptionHelpFormatter'>,            │ │
│ │                      conflict_handler='error', add_help=True)            │ │
│ │        report_file = None                                                │ │
│ │             system = <buildtest.system.BuildTestSystem object at         │ │
│ │                      0x7f2ea7f47f10>                                     │ │
│ │ validate_executors = True                                                │ │
│ ╰──────────────────────────────────────────────────────────────────────────╯ │
│                                                                              │
│ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/bu │
│ ildtest/cli/build.py:561 in __init__                                         │
│                                                                              │
│    558 │   │   │                                                             │
│    559 │   │   │   if rebuild > 50:                                          │
│    560 │   │   │   │   raise BuildTestError(                                 │
│ ❱  561 │   │   │   │   │   f"--rebuild {rebuild} exceeds maximum rebuild lim │
│    562 │   │   │   │   )                                                     │
│    563 │   │                                                                 │
│    564 │   │   if timeout:                                                   │
│                                                                              │
│ ╭───────────────────────────────── locals ─────────────────────────────────╮ │
│ │            account = None                                                │ │
│ │         buildspecs = ['tutorials/test_status/pass_returncode.yml']       │ │
│ │   buildtest_system = <buildtest.system.BuildTestSystem object at         │ │
│ │                      0x7f2ea7f47f10>                                     │ │
│ │      configuration = <buildtest.config.SiteConfiguration object at       │ │
│ │                      0x7f2ea7f47c10>                                     │ │
│ │ exclude_buildspecs = None                                                │ │
│ │      executor_type = None                                                │ │
│ │          executors = None                                                │ │
│ │  filter_buildspecs = None                                                │ │
│ │         helpfilter = False                                               │ │
│ │        maxpendtime = None                                                │ │
│ │        modulepurge = False                                               │ │
│ │            modules = None                                                │ │
│ │           numnodes = None                                                │ │
│ │           numprocs = None                                                │ │
│ │      poll_interval = None                                                │ │
│ │            rebuild = 51                                                  │ │
│ │    remove_stagedir = False                                               │ │
│ │        report_file = None                                                │ │
│ │              rerun = False                                               │ │
│ │              retry = 1                                                   │ │
│ │               self = <buildtest.cli.build.BuildTest object at            │ │
│ │                      0x7f2ea7ad4a10>                                     │ │
│ │              stage = None                                                │ │
│ │               tags = None                                                │ │
│ │            testdir = None                                                │ │
│ │            timeout = None                                                │ │
│ │     unload_modules = None                                                │ │
│ ╰──────────────────────────────────────────────────────────────────────────╯ │
╰──────────────────────────────────────────────────────────────────────────────╯
BuildTestError: '--rebuild 51 exceeds maximum rebuild limit of 50'

Rerun Last command

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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:46                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/vars.yml: VALID
Total builder objects created: 1
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variabl… │ script │ generic… │ None     │ None  │ None  │ Declare  │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ variabl… │         │
│          │        │          │          │       │       │ in bash  │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
variables_bash/dd16d48d: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/dd16d48d
variables_bash/dd16d48d: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/dd16d48d/stage
variables_bash/dd16d48d: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/dd16d48d/variables_bash_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/dd16d48d does not have any dependencies adding test to queue
variables_bash/dd16d48d: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/dd16d48d/stage
variables_bash/dd16d48d: Running Test via command: bash --norc --noprofile -eo pipefail variables_bash_build.sh
variables_bash/dd16d48d: Test completed in 0.009112 seconds
variables_bash/dd16d48d: Test completed with returncode: 0
variables_bash/dd16d48d: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/dd16d48d/variables_bash.out
variables_bash/dd16d48d: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/dd16d48d/variables_bash.err
In this iteration we are going to run the following tests: [variables_bash/dd16d48d]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ variables_ba │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.009112 │
│ sh/dd16d48d  │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 1 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_g3txkp82.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 /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/rerun.json all other options will be ignored.
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:47                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/vars.yml: VALID
Total builder objects created: 1
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variabl… │ script │ generic… │ None     │ None  │ None  │ Declare  │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ variabl… │         │
│          │        │          │          │       │       │ in bash  │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
variables_bash/1dfe2bb9: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/1dfe2bb9
variables_bash/1dfe2bb9: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/1dfe2bb9/stage
variables_bash/1dfe2bb9: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/1dfe2bb9/variables_bash_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/1dfe2bb9 does not have any dependencies adding test to queue
variables_bash/1dfe2bb9: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/1dfe2bb9/stage
variables_bash/1dfe2bb9: Running Test via command: bash --norc --noprofile -eo pipefail variables_bash_build.sh
variables_bash/1dfe2bb9: Test completed in 0.009301 seconds
variables_bash/1dfe2bb9: Test completed with returncode: 0
variables_bash/1dfe2bb9: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/1dfe2bb9/variables_bash.out
variables_bash/1dfe2bb9: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/1dfe2bb9/variables_bash.err
In this iteration we are going to run the following tests: [variables_bash/1dfe2bb9]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ variables_ba │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.009301 │
│ sh/1dfe2bb9  │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 1 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_79pbh4xo.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 /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/rerun.json all other options will be ignored.
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:47                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/vars.yml: VALID
Total builder objects created: 1
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ variabl… │ script │ generic… │ None     │ None  │ None  │ Declare  │ /home/… │
│          │        │          │          │       │       │ shell    │         │
│          │        │          │          │       │       │ variabl… │         │
│          │        │          │          │       │       │ in bash  │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
variables_bash/2dffe4bc: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/2dffe4bc
variables_bash/2dffe4bc: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/2dffe4bc/stage
variables_bash/2dffe4bc: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/2dffe4bc/variables_bash_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
variables_bash/2dffe4bc does not have any dependencies adding test to queue
variables_bash/2dffe4bc: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/2dffe4bc/stage
variables_bash/2dffe4bc: Running Test via command: bash --norc --noprofile -eo pipefail variables_bash_build.sh
variables_bash/2dffe4bc: Test completed in 0.009068 seconds
variables_bash/2dffe4bc: Test completed with returncode: 0
variables_bash/2dffe4bc: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/2dffe4bc/variables_bash.out
variables_bash/2dffe4bc: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/vars/variables_bash/2dffe4bc/variables_bash.err
In this iteration we are going to run the following tests: [variables_bash/2dffe4bc]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ variables_ba │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.009068 │
│ sh/2dffe4bc  │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 1 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_yall11pf.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

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 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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:48                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/sleep.yml: VALID
Total builder objects created: 1
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ sleep/5… │ script │ generic… │ None     │ None  │ None  │ sleep 2  │ /home/… │
│          │        │          │          │       │       │ seconds  │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
sleep/589c4551: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/589c4551
sleep/589c4551: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/589c4551/stage
sleep/589c4551: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/589c4551/sleep_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
sleep/589c4551 does not have any dependencies adding test to queue
sleep/589c4551: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/589c4551/stage
sleep/589c4551: Running Test via command: bash --norc --noprofile -eo pipefail sleep_build.sh
sleep/589c4551: Test completed in 1.003414 seconds
sleep/589c4551: Test completed with returncode: -9
sleep/589c4551: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/589c4551/sleep.out
sleep/589c4551: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/589c4551/sleep.err
In this iteration we are going to run the following tests: [sleep/589c4551]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ sleep/589c45 │ generic.loc… │ FAIL   │ N/A N/A N/A   │ -9         │ 1.003414 │
│ 51           │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 1 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_u71zuykx.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-19096928-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/01/06 20:23:50                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.1                                                      │
│ python path:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version:     3.7.15                                                   │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File:        /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command:            /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│                                                                              │
╰──────────────────────────────────────────────────────────────────────────────╯
───────────────────────────  Discovering Buildspecs ────────────────────────────
                             Discovered buildspecs                              
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec                                                                    ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/t… ║
╚══════════════════════════════════════════════════════════════════════════════╝


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/v1.1/tutorials/sleep.yml: VALID
Total builder objects created: 1
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ sleep/8… │ script │ generic… │ None     │ None  │ None  │ sleep 2  │ /home/… │
│          │        │          │          │       │       │ seconds  │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
sleep/8a7d8f0d: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/8a7d8f0d
sleep/8a7d8f0d: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/8a7d8f0d/stage
sleep/8a7d8f0d: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/8a7d8f0d/sleep_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
sleep/8a7d8f0d does not have any dependencies adding test to queue
sleep/8a7d8f0d: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/8a7d8f0d/stage
sleep/8a7d8f0d: Running Test via command: bash --norc --noprofile -eo pipefail sleep_build.sh
sleep/8a7d8f0d: Test completed in 2.019997 seconds
sleep/8a7d8f0d: Test completed with returncode: 0
sleep/8a7d8f0d: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/8a7d8f0d/sleep.out
sleep/8a7d8f0d: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/tests/generic.local.bash/sleep/sleep/8a7d8f0d/sleep.err
In this iteration we are going to run the following tests: [sleep/8a7d8f0d]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ sleep/8a7d8f │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 2.019997 │
│ 0d           │              │        │               │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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


Adding 1 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.1/var/logs/buildtest_n9u6qqbb.log