Merge branch 'make-xpass-failure-again' of https://github.com/TanyaAgarwal28/pytest into make-xpass-failure-again

This commit is contained in:
TanyaAgarwal28 2023-10-12 13:48:55 +05:30
commit 7595627df1
1 changed files with 5 additions and 3 deletions

View File

@ -1,11 +1,13 @@
import pytest
@pytest.mark.parametrize("a", [1, 2, 10, 11, 2, 1, 12, 11,2_1])
@pytest.mark.parametrize("a", [1, 2, 10, 11, 2, 1, 12, 11, 2_1])
def test_params(a):
print('a:', a)
print("a:", a)
assert a > 0
@pytest.mark.parametrize("a", [1, 2, 10, 11, 2, 1, 12, 11])
def test_params(a):
print('a:', a)
print("a:", a)
assert a > 0