Skip to content

Commit 51519f8

Browse files
committed
fix: remove pytest-jira dependencies since we don't use it
Signed-off-by: Debarati Basu-Nag <dbasunag@redhat.com>
1 parent a9566ff commit 51519f8

File tree

8 files changed

+1532
-1584
lines changed

8 files changed

+1532
-1584
lines changed

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,3 @@ uv run pytest -k test_name
7070
### Running on different distributions
7171
Bt default, RHOAI distribution is set.
7272
To run on ODH, pass `--tc=distribution:upstream` to pytest.
73-
74-
### jira integration
75-
To skip running tests which have open bugs, [pytest_jira](https://github.com/rhevm-qe-automation/pytest_jira) plugin is used.
76-
To run tests with jira integration, you need to set `PYTEST_JIRA_URL` and `PYTEST_JIRA_TOKEN` environment variables.
77-
To make a test with jira marker, add: `@pytest.mark.jira(jira_id="RHOAIENG-0000", run=False)` to the test.

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ dependencies = [
5858
"grpcio-reflection",
5959
"portforward>=0.7.1",
6060
"pytest-testconfig>=0.2.0",
61-
"pytest-jira>=0.3.21",
6261
"pygithub>=2.5.0",
6362
"timeout-sampler>=1.0.6",
6463
"shortuuid>=1.0.13",

pytest.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ testpaths = tests
55
markers =
66
# General
77
polarion: Store polarion test ID
8-
jira: Store jira bug ID
98

109
# CI
1110
smoke: Mark tests as smoke tests; covers core functionality of the product. Aims to ensure that the build is stable enough for further testing.
@@ -29,4 +28,3 @@ addopts =
2928
--show-progress
3029
--tc-file=tests/global_config.py
3130
--tc-format=python
32-
--jira

tests/model_serving/model_server/components/test_custom_resources.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ def wait_for_isvc_model_status(isvc: InferenceService, target_model_state: str,
3434
raise
3535

3636

37-
@pytest.mark.jira("RHOAIENG-10765")
3837
@pytest.mark.parametrize(
3938
"model_namespace, serving_runtime_from_template, invalid_s3_models_inference_service",
4039
[

tests/model_serving/model_server/model_car/test_oci_image.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
)
2929
class TestKserveModelCar:
3030
@pytest.mark.smoke
31-
@pytest.mark.jira("RHOAIENG-13465")
3231
def test_model_car_no_restarts(self, model_car_tgis_inference_service):
3332
"""Verify that model pod doesn't restart"""
3433
pod = get_pods_by_isvc_label(
@@ -41,7 +40,6 @@ def test_model_car_no_restarts(self, model_car_tgis_inference_service):
4140
assert not restarted_containers, f"Containers {restarted_containers} restarted"
4241

4342
@pytest.mark.smoke
44-
@pytest.mark.jira("RHOAIENG-12306")
4543
def test_model_car_using_rest(self, model_car_tgis_inference_service):
4644
"""Verify model query with token using REST"""
4745
verify_inference_response(

tests/model_serving/model_server/ovms/kserve/test_onnx_serverless.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
)
3131
class TestONNXServerless:
3232
@pytest.mark.smoke
33-
@pytest.mark.jira("RHOAIENG-9045")
3433
def test_serverless_onnx_rest_inference(self, ovms_serverless_inference_service):
3534
"""Verify that kserve Serverless ONNX model can be queried using REST"""
3635
verify_inference_response(

tests/model_serving/model_server/raw_deployment/test_bge_large_eng_caikit.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616

1717
@pytest.mark.smoke
18-
@pytest.mark.jira("RHOAIENG-11749")
1918
@pytest.mark.parametrize(
2019
"model_namespace, serving_runtime_from_template, s3_models_inference_service",
2120
[

uv.lock

Lines changed: 1532 additions & 1571 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)