diff options
Diffstat (limited to 'xtesting/ci')
-rw-r--r-- | xtesting/ci/run_tests.py | 2 | ||||
-rw-r--r-- | xtesting/ci/testcases.yaml | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/xtesting/ci/run_tests.py b/xtesting/ci/run_tests.py index 5b0baf03..0f77f9da 100644 --- a/xtesting/ci/run_tests.py +++ b/xtesting/ci/run_tests.py @@ -302,7 +302,7 @@ class Runner(): if test_case.is_skipped: result = 'SKIP' else: - result = 'PASS' if(test_case.is_successful( + result = 'PASS' if (test_case.is_successful( ) == test_case.EX_OK) else 'FAIL' msg.add_row( [test_case.case_name, test_case.project_name, diff --git a/xtesting/ci/testcases.yaml b/xtesting/ci/testcases.yaml index 59845e60..513a8417 100644 --- a/xtesting/ci/testcases.yaml +++ b/xtesting/ci/testcases.yaml @@ -51,7 +51,7 @@ tiers: args: suites: - >- - /usr/lib/python3.10/site-packages/xtesting/samples/HelloWorld.robot + /usr/lib/python3.12/site-packages/xtesting/samples/HelloWorld.robot variable: - 'var01:foo' - 'var02:bar' @@ -66,7 +66,7 @@ tiers: name: behaveframework args: suites: - - /usr/lib/python3.10/site-packages/xtesting/samples/features + - /usr/lib/python3.12/site-packages/xtesting/samples/features tags: - foo - case_name: eighth @@ -79,7 +79,7 @@ tiers: run: name: ansible args: - private_data_dir: /usr/lib/python3.10/site-packages/xtesting/samples + private_data_dir: /usr/lib/python3.12/site-packages/xtesting/samples playbook: helloworld.yml - case_name: nineth project_name: xtesting @@ -91,4 +91,4 @@ tiers: run: name: pytest args: - dir: /usr/lib/python3.10/site-packages/xtesting/samples/fourth.py + dir: /usr/lib/python3.12/site-packages/xtesting/samples/fourth.py |