diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2024-09-06 10:58:24 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2024-09-06 12:02:20 +0200 |
commit | e8c1a3da8d98f09a1b455d6eebe17c1345e7bfbc (patch) | |
tree | 3dbc5377c1d31336851525a14bce1e8d8c6ecde1 /xtesting/ci | |
parent | a1ba6fb90620f04ef49f5d29d5ce0e2d812e37b2 (diff) |
Update to Alpine 3.20
Please note that it also updates python to 3.12.
Change-Id: I715194304b37b9cd52affa998a94ba5ec52e7732
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
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 |