pytest-language-server 0.22.0

A blazingly fast Language Server Protocol implementation for pytest
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
def test_sample(sample_fixture):
    """Test using sample_fixture."""
    assert sample_fixture == 42


def test_another(another_fixture):
    """Test using another_fixture."""
    assert another_fixture == "hello world"


def test_both(sample_fixture, another_fixture, generator_fixture):
    """Test using both fixtures."""
    assert sample_fixture == 42
    assert another_fixture == "hello world"