in Python by (5.1k points)

Q. Which of the following decorator is used to skip a test unconditionally, with pytest?

A. @pytest.mark.ignoreif

B. @pytest.mark.ignore

C. @pytest.mark.skip 

D. @pytest.mark.skipif

1 Answer

0 votes
by (5.1k points)
Ans i s

@pytest.mark.skip

Related questions

0 votes
asked Jul 2, 2020 in Python by GeorgeBell (5.1k points)
...