FRFabio Ramalhoindev.fabioramalho.me·Jul 1, 2023 · 2 min read@pytest.mark.parametrize: Enhancing clarity with "wrapped" parametrized argumentsOne of the Pytest features I like and use most is @pytest.mark.parametrize. Below is an example of how to use it (from Pytest documentation): import pytest @pytest.mark.parametrize("test_input,expected", [ ("3+5", 8), ("2+4", 6), ("6*9", 42) ])...00
FRFabio Ramalhoindev.fabioramalho.me·Jun 2, 2023 · 2 min read"Hello... World?"Hi everyone and welcome to what will be my tech-knowledge garden (at least, that's my goal with this blog). I have decided to embark on this new adventure of blogging to document and share my knowledge and experiences in the world of software develop...00