| 
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 | 
import pluginconf.depends
import logging
logging.basicConfig(level=logging.DEBUG)
@pytest.fixture
def check():
    deps = pluginconf.depends.add={"core": 2.555, "config": 2.0, "existing": 0.1},
        core=["IMPLICIT"],
    )
    deps.api = ["python", "foobar"]
    return deps
    
@pytest.fixtureDependencyValidation( | 
|
 | 
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 | 
import pluginconf.depends
import logging
logging.basicConfig(level=logging.DEBUG)
@pytest.fixture
def check():
    deps = pluginconf.depends.Check(
        add={"core": 2.555, "config": 2.0, "existing": 0.1},
        core=["IMPLICIT"],
    )
    deps.api = ["python", "foobar"]
    return deps
    
@pytest.fixture
 |