Merge remote-tracking branch 'origin/master' into merge-master

This commit is contained in:
Daniel Hahler
2018-10-24 22:36:34 +02:00
36 changed files with 284 additions and 53 deletions

View File

@@ -0,0 +1,15 @@
import pytest
@pytest.fixture
def fix1(fix2):
return 1
@pytest.fixture
def fix2(fix1):
return 1
def test(fix1):
pass