Test Dependency

Note

This feature is subject to change

Buildtest can support test dependencies which allows one to specify condition before running a test. Let’s take a look at this next example, we have a buildspec with three tests jobA, jobB, and jobC. The test jobA will run immediately but now we introduce a new keyword needs which is a list of test names as dependency. We want test jobB to run after jobA is complete, and jobC to run once jobA and jobB is complete.

buildspecs:
  jobA:
    type: script
    executor: generic.local.bash
    description: no job dependency
    run: |
      echo "This job has no dependency"
      sleep 5

  jobB:
    type: script
    executor: generic.local.bash
    description: job dependency on jobA
    needs: [jobA]
    run: |
      echo "This job depends on jobA"
      sleep 2

  jobC:
    type: script
    executor: generic.local.bash
    description: job dependency on jobA and jobB
    needs: [jobA, jobB]
    run: |
      echo "This job depends on jobA and jobB"
      sleep 2

The needs property expects a list of strings, and values must match name of test. If you specify an invalid test name in needs property then buildtest will ignore the value. If multiple tests are specified in needs property then all test must finish prior to running test.

Let’s run this test, and take a note that buildtest will run test jobA, followed by jobB then jobC.

buildtest build -b tutorials/job_dependency/ex1.yml
$ buildtest build -b tutorials/job_dependency/ex1.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-19701871-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/03/07 15:58:46                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.3                                                      │
│ 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.3/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.3/tutorials/job_dependency/ex1.yml: VALID
Total builder objects created: 3
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ jobA/c5… │ script │ generic… │ None     │ None  │ None  │ no job   │ /home/… │
│          │        │          │          │       │       │ depende… │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ jobB/ec… │ script │ generic… │ None     │ None  │ None  │ job      │ /home/… │
│          │        │          │          │       │       │ depende… │         │
│          │        │          │          │       │       │ on jobA  │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ jobC/2f… │ script │ generic… │ None     │ None  │ None  │ job      │ /home/… │
│          │        │          │          │       │       │ depende… │         │
│          │        │          │          │       │       │ on jobA  │         │
│          │        │          │          │       │       │ and jobB │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
jobA/c54dcba4: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobA/c54dcba4
jobA/c54dcba4: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobA/c54dcba4/stage
jobA/c54dcba4: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobA/c54dcba4/jobA_build.sh
jobB/eca24a67: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobB/eca24a67
jobB/eca24a67: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobB/eca24a67/stage
jobB/eca24a67: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobB/eca24a67/jobB_build.sh
jobC/2f527524: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobC/2f527524
jobC/2f527524: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobC/2f527524/stage
jobC/2f527524: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobC/2f527524/jobC_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
jobC/2f527524 Skipping job because it has job dependency on jobA/c54dcba4 which is in state PENDING
jobA/c54dcba4 does not have any dependencies adding test to queue
jobB/eca24a67 Skipping job because it has job dependency on jobA/c54dcba4 which is in state PENDING
jobA/c54dcba4: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobA/c54dcba4/stage
jobA/c54dcba4: Running Test via command: bash --norc --noprofile -eo pipefail jobA_build.sh
jobA/c54dcba4: Test completed in 5.009218 seconds
jobA/c54dcba4: Test completed with returncode: 0
jobA/c54dcba4: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobA/c54dcba4/jobA.out
jobA/c54dcba4: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobA/c54dcba4/jobA.err
In this iteration we are going to run the following tests: [jobA/c54dcba4]
───────────────────────────────── Iteration 2 ──────────────────────────────────
jobC/2f527524 Skipping job because it has job dependency on jobB/eca24a67 which is in state PENDING
jobB/eca24a67: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobB/eca24a67/stage
jobB/eca24a67: Running Test via command: bash --norc --noprofile -eo pipefail jobB_build.sh
jobB/eca24a67: Test completed in 2.007271 seconds
jobB/eca24a67: Test completed with returncode: 0
jobB/eca24a67: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobB/eca24a67/jobB.out
jobB/eca24a67: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobB/eca24a67/jobB.err
In this iteration we are going to run the following tests: [jobB/eca24a67]
───────────────────────────────── Iteration 3 ──────────────────────────────────
jobC/2f527524: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobC/2f527524/stage
jobC/2f527524: Running Test via command: bash --norc --noprofile -eo pipefail jobC_build.sh
jobC/2f527524: Test completed in 2.007248 seconds
jobC/2f527524: Test completed with returncode: 0
jobC/2f527524: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobC/2f527524/jobC.out
jobC/2f527524: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex1/jobC/2f527524/jobC.err
In this iteration we are going to run the following tests: [jobC/2f527524]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃               ┃        ┃ checks       ┃            ┃          ┃
┃              ┃               ┃        ┃ (ReturnCode, ┃            ┃          ┃
┃              ┃               ┃        ┃ Regex,       ┃            ┃          ┃
┃ builder      ┃ executor      ┃ status ┃ Runtime)     ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ jobC/2f52752 │ generic.loca… │ PASS   │ N/A N/A N/A  │ 0          │ 2.007248 │
│ 4            │               │        │              │            │          │
├──────────────┼───────────────┼────────┼──────────────┼────────────┼──────────┤
│ jobB/eca24a6 │ generic.loca… │ PASS   │ N/A N/A N/A  │ 0          │ 2.007271 │
│ 7            │               │        │              │            │          │
├──────────────┼───────────────┼────────┼──────────────┼────────────┼──────────┤
│ jobA/c54dcba │ generic.loca… │ PASS   │ N/A N/A N/A  │ 0          │ 5.009218 │
│ 4            │               │        │              │            │          │
└──────────────┴───────────────┴────────┴──────────────┴────────────┴──────────┘



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.3/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/logs/buildtest__j7t4dcb.log

Test Dependency by returncode

In this next example, we can control behavior of job dependency based on returncode for a given test. This test has three tests: test1, test2 and test3. The first test will exit with returncode 1 but this test will pass because we have set state: PASS to override the status check. The next test test2 requires test1 to have a returncode of 1 in order to satisfy dependency. The returncode property expects a valid returncode and it can be a list of returncode similar to how one specify returncode under the status property see Return Code Matching. The needs property can support multiple test with returncode, in test3 we require test1 to have returncode 1 while test2 has a returncode of 2. We expect test2 to return a returncode of 2 because of exit 2 statement so we expect all three tests to run.

buildspecs:
  test1:
    type: script
    executor: generic.local.bash
    description: This test will pass with exit 1
    run: exit 1
    status:
      state: PASS

  test2:
    type: script
    executor: generic.local.bash
    description: This test will run if test1 has returncode 1
    run: exit 2
    status:
      state: PASS
    needs:
      - test1:
          returncode: 1

  test3:
    type: script
    executor: generic.local.bash
    description: This test will run if test1 has returncode 1 and test2 has returncode 2
    run: exit 1
    status:
      state: PASS
    needs:
      - test1:
          returncode: 1
      - test2:
          returncode: 2

Let’s build this test and take note of execution order of test.

buildtest build -b tutorials/job_dependency/ex2.yml
$ buildtest build -b tutorials/job_dependency/ex2.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-19701871-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/03/07 15:58:55                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.3                                                      │
│ 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.3/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.3/tutorials/job_dependency/ex2.yml: VALID
Total builder objects created: 3
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ test1/a… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will     │         │
│          │        │          │          │       │       │ pass     │         │
│          │        │          │          │       │       │ with     │         │
│          │        │          │          │       │       │ exit 1   │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ test2/9… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will run │         │
│          │        │          │          │       │       │ if test1 │         │
│          │        │          │          │       │       │ has      │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 1        │         │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ test3/1… │ script │ generic… │ None     │ None  │ None  │ This     │ /home/… │
│          │        │          │          │       │       │ test     │         │
│          │        │          │          │       │       │ will run │         │
│          │        │          │          │       │       │ if test1 │         │
│          │        │          │          │       │       │ has      │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 1 and    │         │
│          │        │          │          │       │       │ test2    │         │
│          │        │          │          │       │       │ has      │         │
│          │        │          │          │       │       │ returnc… │         │
│          │        │          │          │       │       │ 2        │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
test1/a6e5f7e6: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test1/a6e5f7e6
test1/a6e5f7e6: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test1/a6e5f7e6/stage
test1/a6e5f7e6: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test1/a6e5f7e6/test1_build.sh
test2/9e1dcce5: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test2/9e1dcce5
test2/9e1dcce5: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test2/9e1dcce5/stage
test2/9e1dcce5: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test2/9e1dcce5/test2_build.sh
test3/11c9edec: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test3/11c9edec
test3/11c9edec: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test3/11c9edec/stage
test3/11c9edec: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test3/11c9edec/test3_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
test1/a6e5f7e6 does not have any dependencies adding test to queue
test3/11c9edec Skipping job because it has job dependency on test1/a6e5f7e6 
test2/9e1dcce5 Skipping job because it has job dependency on test1/a6e5f7e6 
test1/a6e5f7e6: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test1/a6e5f7e6/stage
test1/a6e5f7e6: Running Test via command: bash --norc --noprofile -eo pipefail test1_build.sh
test1/a6e5f7e6: Test completed in 0.005512 seconds
test1/a6e5f7e6: Test completed with returncode: 1
test1/a6e5f7e6: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test1/a6e5f7e6/test1.out
test1/a6e5f7e6: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test1/a6e5f7e6/test1.err
In this iteration we are going to run the following tests: [test1/a6e5f7e6]
───────────────────────────────── Iteration 2 ──────────────────────────────────
test3/11c9edec Skipping job because it has job dependency on test2/9e1dcce5 
test2/9e1dcce5: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test2/9e1dcce5/stage
test2/9e1dcce5: Running Test via command: bash --norc --noprofile -eo pipefail test2_build.sh
test2/9e1dcce5: Test completed in 0.005224 seconds
test2/9e1dcce5: Test completed with returncode: 2
test2/9e1dcce5: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test2/9e1dcce5/test2.out
test2/9e1dcce5: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test2/9e1dcce5/test2.err
In this iteration we are going to run the following tests: [test2/9e1dcce5]
───────────────────────────────── Iteration 3 ──────────────────────────────────
test3/11c9edec: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test3/11c9edec/stage
test3/11c9edec: Running Test via command: bash --norc --noprofile -eo pipefail test3_build.sh
test3/11c9edec: Test completed in 0.005036 seconds
test3/11c9edec: Test completed with returncode: 1
test3/11c9edec: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test3/11c9edec/test3.out
test3/11c9edec: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex2/test3/11c9edec/test3.err
In this iteration we are going to run the following tests: [test3/11c9edec]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ test1/a6e5f7 │ generic.loc… │ PASS   │ False False   │ 1          │ 0.005512 │
│ e6           │              │        │ False         │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ test3/11c9ed │ generic.loc… │ PASS   │ False False   │ 1          │ 0.005036 │
│ ec           │              │        │ False         │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ test2/9e1dcc │ generic.loc… │ PASS   │ False False   │ 2          │ 0.005224 │
│ e5           │              │        │ False         │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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.3/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/logs/buildtest_2wka69xj.log

Test Dependency by state

You can specify state as a property to check for test state when specify test dependency. In this next example, we have have four tests pass_test, fail_test, pass_and_fail_test, and final_test. The first test will be a PASS because we have state: PASS. The test fail_test depends on pass_test only if it has state: PASS, if value is mismatch then test will be skipped. Note that buildtest will skip test until next iteration if test is not executed, however if test is complete then buildtest will cancel dependent test. We can specify multiple test dependencies with state property such as test pass_and_fail_test which expects pass_test to have state: PASS and fail_test to have state: FAIL. In test final_test, shows how you can combine the format, the needs property is a list of object where each element is name of test. If no properties are associated with test name then buildtest will wait until job is complete to execute test. In this example, the test expects both pass_test and fail_test to run while pass_and_fail_test must have returncode of 1.

buildspecs:
  pass_test:
    type: script
    executor: generic.local.bash
    description: This test will always pass
    status:
      state: PASS
    run: |
      echo "This test will pass"
      sleep 2

  fail_test:
    type: script
    executor: generic.local.bash
    description: This test will run if test 'pass_test' is in state 'PASS'
    status:
      state: FAIL
    needs:
      - pass_test:
          state: PASS
    run: |
      echo "This test will fail"
      sleep 2

  pass_and_fail_test:
    type: script
    executor: generic.local.bash
    description: This test will run if pass_test is 'PASS' and fail_test is 'FAIL'
    needs:
      - pass_test:
          state: PASS
      - fail_test:
          state: FAIL
    run: |
      sleep 2
      exit 1
    status:
      returncode: 1

  final_test:
    type: script
    executor: generic.local.bash
    description: Test will run after 'pass_test', 'fail_test', and 'pass_and_fail_test'
    needs:
      - pass_test
      - fail_test
      - pass_and_fail_test:
          returncode: 1
    run: |
      sleep 2
      echo "Hello world"

Let’s build this test and take note all tests are run.

buildtest build -b tutorials/job_dependency/ex3.yml
$ buildtest build -b tutorials/job_dependency/ex3.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-19701871-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/03/07 15:58:56                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.3                                                      │
│ 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.3/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.3/tutorials/job_dependency/ex3.yml: VALID
Total builder objects created: 4
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ 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… │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
pass_test/3ce6ae95: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/pass_test/3ce6ae95
pass_test/3ce6ae95: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/pass_test/3ce6ae95/stage
pass_test/3ce6ae95: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/pass_test/3ce6ae95/pass_test_build.sh
fail_test/21a94bb5: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/fail_test/21a94bb5
fail_test/21a94bb5: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/fail_test/21a94bb5/stage
fail_test/21a94bb5: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/fail_test/21a94bb5/fail_test_build.sh
pass_and_fail_test/2c1dfb03: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/pass_and_fail_test/2c1dfb03
pass_and_fail_test/2c1dfb03: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/pass_and_fail_test/2c1dfb03/stage
pass_and_fail_test/2c1dfb03: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/pass_and_fail_test/2c1dfb03/pass_and_fail_test_build.sh
final_test/4698ee9b: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/final_test/4698ee9b
final_test/4698ee9b: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/final_test/4698ee9b/stage
final_test/4698ee9b: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/final_test/4698ee9b/final_test_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
pass_and_fail_test/2c1dfb03 Skipping job because it has job dependency on pass_test/3ce6ae95
pass_test/3ce6ae95 does not have any dependencies adding test to queue
final_test/4698ee9b Skipping job because it has job dependency on pass_test/3ce6ae95 which is in state PENDING
fail_test/21a94bb5 Skipping job because it has job dependency on pass_test/3ce6ae95
pass_test/3ce6ae95: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/pass_test/3ce6ae95/stage
pass_test/3ce6ae95: Running Test via command: bash --norc --noprofile -eo pipefail pass_test_build.sh
pass_test/3ce6ae95: Test completed in 2.006817 seconds
pass_test/3ce6ae95: Test completed with returncode: 0
pass_test/3ce6ae95: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/pass_test/3ce6ae95/pass_test.out
pass_test/3ce6ae95: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/pass_test/3ce6ae95/pass_test.err
In this iteration we are going to run the following tests: [pass_test/3ce6ae95]
───────────────────────────────── Iteration 2 ──────────────────────────────────
pass_and_fail_test/2c1dfb03 Skipping job because it has job dependency on fail_test/21a94bb5
final_test/4698ee9b Skipping job because it has job dependency on fail_test/21a94bb5 which is in state PENDING
fail_test/21a94bb5: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/fail_test/21a94bb5/stage
fail_test/21a94bb5: Running Test via command: bash --norc --noprofile -eo pipefail fail_test_build.sh
fail_test/21a94bb5: Test completed in 2.007206 seconds
fail_test/21a94bb5: Test completed with returncode: 0
fail_test/21a94bb5: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/fail_test/21a94bb5/fail_test.out
fail_test/21a94bb5: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/fail_test/21a94bb5/fail_test.err
In this iteration we are going to run the following tests: [fail_test/21a94bb5]
───────────────────────────────── Iteration 3 ──────────────────────────────────
final_test/4698ee9b Skipping job because it has job dependency on pass_and_fail_test/2c1dfb03
pass_and_fail_test/2c1dfb03: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/pass_and_fail_test/2c1dfb03/stage
pass_and_fail_test/2c1dfb03: Running Test via command: bash --norc --noprofile -eo pipefail pass_and_fail_test_build.sh
pass_and_fail_test/2c1dfb03: Test completed in 2.006901 seconds
pass_and_fail_test/2c1dfb03: Test completed with returncode: 1
pass_and_fail_test/2c1dfb03: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/pass_and_fail_test/2c1dfb03/pass_and_fail_test.out
pass_and_fail_test/2c1dfb03: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/pass_and_fail_test/2c1dfb03/pass_and_fail_test.err
pass_and_fail_test/2c1dfb03: Checking returncode - 1 is matched in list [1]
In this iteration we are going to run the following tests: [pass_and_fail_test/2c1dfb03]
───────────────────────────────── Iteration 4 ──────────────────────────────────
final_test/4698ee9b: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/final_test/4698ee9b/stage
final_test/4698ee9b: Running Test via command: bash --norc --noprofile -eo pipefail final_test_build.sh
final_test/4698ee9b: Test completed in 2.007023 seconds
final_test/4698ee9b: Test completed with returncode: 0
final_test/4698ee9b: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/final_test/4698ee9b/final_test.out
final_test/4698ee9b: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex3/final_test/4698ee9b/final_test.err
In this iteration we are going to run the following tests: [final_test/4698ee9b]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ final_test/4 │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 2.007023 │
│ 698ee9b      │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ pass_and_fai │ generic.loc… │ PASS   │ True False    │ 1          │ 2.006901 │
│ l_test/2c1df │              │        │ False         │            │          │
│ b03          │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ fail_test/21 │ generic.loc… │ FAIL   │ False False   │ 0          │ 2.007206 │
│ a94bb5       │              │        │ False         │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ pass_test/3c │ generic.loc… │ PASS   │ False False   │ 0          │ 2.006817 │
│ e6ae95       │              │        │ False         │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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.3/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/logs/buildtest__fb173_g.log

In this next example, we have three tests the first test will runtime_test will sleep for 5 seconds but it will fail due to runtime requirement of 2sec. The next two tests runtime_test_pass and runtime_test_fail both depend on runtime_test however due to condition only one of them can be run because runtime_test_pass expects runtime_test to have state: PASS while runtime_test_fail expects runtime_test to have state: FAIL. This type of workflow can be used if you want to run a set of test based on one condition while running a different set of test based on the negative condition.

buildspecs:
  runtime_test:
    type: script
    executor: generic.local.bash
    description: This test will sleep 5 second but will fail due to runtime 2sec
    status:
      runtime:
        min: 2.0
    run: sleep 5

  runtime_test_pass:
    type: script
    executor: generic.local.bash
    description: This test will run when runtime_test_pass is PASS
    needs:
      - runtime_test:
          state: PASS
    run: echo "Performing some action when test PASS"

  runtime_test_fail:
    type: script
    executor: generic.local.bash
    description: This test will run when runtime_test_pass is FAIL
    needs:
      - runtime_test:
          state: FAIL
    run: echo "Performing some action when test FAIL"

Let’s build this test and take note that we only run two tests and runtime_test_fail was skipped because test runtime_test has a state: PASS.

buildtest build -b tutorials/job_dependency/ex4.yml
$ buildtest build -b tutorials/job_dependency/ex4.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│                                                                              │
│ User:               docs                                                     │
│ Hostname:           build-19701871-project-280831-buildtest                  │
│ Platform:           Linux                                                    │
│ Current Time:       2023/03/07 15:59:05                                      │
│ buildtest path:     /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version:  1.3                                                      │
│ 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.3/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.3/tutorials/job_dependency/ex4.yml: VALID
Total builder objects created: 3
                            Builders by type=script                             
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder  ┃ type   ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ 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  │         │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
runtime_test/2dbb1671: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test/2dbb1671
runtime_test/2dbb1671: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test/2dbb1671/stage
runtime_test/2dbb1671: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test/2dbb1671/runtime_test_build.sh
runtime_test_pass/898ff70b: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test_pass/898ff70b
runtime_test_pass/898ff70b: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test_pass/898ff70b/stage
runtime_test_pass/898ff70b: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test_pass/898ff70b/runtime_test_pass_build.sh
runtime_test_fail/93e8493c: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test_fail/93e8493c
runtime_test_fail/93e8493c: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test_fail/93e8493c/stage
runtime_test_fail/93e8493c: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test_fail/93e8493c/runtime_test_fail_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
runtime_test/2dbb1671 does not have any dependencies adding test to queue
runtime_test_pass/898ff70b Skipping job because it has job dependency on runtime_test/2dbb1671
runtime_test_fail/93e8493c Skipping job because it has job dependency on runtime_test/2dbb1671
runtime_test/2dbb1671: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test/2dbb1671/stage
runtime_test/2dbb1671: Running Test via command: bash --norc --noprofile -eo pipefail runtime_test_build.sh
runtime_test/2dbb1671: Test completed in 5.006702 seconds
runtime_test/2dbb1671: Test completed with returncode: 0
runtime_test/2dbb1671: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test/2dbb1671/runtime_test.out
runtime_test/2dbb1671: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test/2dbb1671/runtime_test.err
runtime_test/2dbb1671: Checking  mintime < runtime: 2.0 < 5.006702
In this iteration we are going to run the following tests: [runtime_test/2dbb1671]
───────────────────────────────── Iteration 2 ──────────────────────────────────
runtime_test_fail/93e8493c is cancelled because it depends on runtime_test/2dbb1671 to have state: FAIL but actual value is PASS
runtime_test_pass/898ff70b: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test_pass/898ff70b/stage
runtime_test_pass/898ff70b: Running Test via command: bash --norc --noprofile -eo pipefail runtime_test_pass_build.sh
runtime_test_pass/898ff70b: Test completed in 0.005499 seconds
runtime_test_pass/898ff70b: Test completed with returncode: 0
runtime_test_pass/898ff70b: Writing output file -  /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test_pass/898ff70b/runtime_test_pass.out
runtime_test_pass/898ff70b: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/tests/generic.local.bash/ex4/runtime_test_pass/898ff70b/runtime_test_pass.err
In this iteration we are going to run the following tests: [runtime_test_pass/898ff70b]
                                  Test Summary                                  
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃              ┃              ┃        ┃ checks        ┃            ┃          ┃
┃              ┃              ┃        ┃ (ReturnCode,  ┃            ┃          ┃
┃              ┃              ┃        ┃ Regex,        ┃            ┃          ┃
┃ builder      ┃ executor     ┃ status ┃ Runtime)      ┃ returncode ┃ runtime  ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ runtime_test │ generic.loc… │ PASS   │ N/A N/A N/A   │ 0          │ 0.005499 │
│ _pass/898ff7 │              │        │               │            │          │
│ 0b           │              │        │               │            │          │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ runtime_test │ generic.loc… │ PASS   │ False False   │ 0          │ 5.006702 │
│ /2dbb1671    │              │        │ True          │            │          │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘



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.3/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/v1.3/var/logs/buildtest_w5kl5uov.log