From 97622eabbd988814b84f8839a76ddee887cd7085 Mon Sep 17 00:00:00 2001 From: Meni Yakove <441263+myakove@users.noreply.github.com> Date: Sun, 23 Jul 2023 14:45:05 +0300 Subject: [PATCH] Add kubevirt market to test_vm (#1257) (#1265) (#1267) Co-authored-by: redhat-qe-bot <108792105+redhat-qe-bot@users.noreply.github.com> --- tests/test_resources.py | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_resources.py b/tests/test_resources.py index 8f5e927cf3..57d17c1ae1 100644 --- a/tests/test_resources.py +++ b/tests/test_resources.py @@ -28,6 +28,7 @@ def test_create(): pass +@pytest.mark.kubevirt def test_vm(namespace): name = "test-vm" with VirtualMachine( diff --git a/tox.ini b/tox.ini index e5c63dca20..1ac220b023 100644 --- a/tox.ini +++ b/tox.ini @@ -21,7 +21,7 @@ deps = commands = pip install . pip install jinja2 PyYaml - pytest tests + pytest -o log_cli=true tests/test_resources.py -k 'not kubevirt' [testenv:unittests] basepython = python3