Markers
import pytest
@pytest.mark.smoke
def test_some():
...
@pytest.mark.smoke
@pytest.mark.asyncio
async def test_some_async():
...pytest -m "smoke"
pytest -m "smoke and anothermarker"Last updated
import pytest
@pytest.mark.smoke
def test_some():
...
@pytest.mark.smoke
@pytest.mark.asyncio
async def test_some_async():
...pytest -m "smoke"
pytest -m "smoke and anothermarker"Last updated