Lewati Pytest

import pytest
@pytest.mark.skip
def test_greater_equal():
   num = 100
   assert num >= 100
Thom626