Skip test¶
This is an example of using the pytest-hardpy functions with a test dependency on another test and skipping tests.
how to start¶
- Launch
hardpy init skip_test
. - Launch CouchDH instance.
- Modify the files described below.
- Launch
hardpy run skip_test
.
description¶
If a test case/module that a test case/module depends on fails, errors or is skipped, the dependent test case/module will also be skipped. A module is considered passed only if all module tests passed. If these dependencies are incorrect, the tests will not run.
To use:
- Add the line
@pytest.mark.dependency()
before independent tests. - Add the line
@pytest.mark.dependency(test_1::test_one)
before the dependent test, if a test that a test depends on is in the same file. - Add the line
@pytest.mark.dependency(test_1)
before the dependent test, if the test depends on the module.
Test/module name formats:
test_1
- if depends on the test moduletest_1::test_one
- if depends on the test case
case by case dependence¶
import pytest
def test_one():
assert False
@pytest.mark.dependency("test_1::test_one")
def test_two():
assert False
test_one
is marked as a dependency for test_two
using @pytest.mark.dependency("test_1::test_one")
.
If test_one
, then test_two
will be skipped.
module by module dependence¶
test_1.py¶
def test_one():
assert False
test_2.py¶
import pytest
pytestmark = pytest.mark.dependency("test_1")
def test_one():
assert True
Module test_2
depends on module test_1
.
If an error occurs in module test_1
, all tests in module test_2
will be skipped.