Use fixture instead of yield_fixture

The old @pytest.yield_fixture causes
a deprecation warning:
Use @pytest.fixture instead; they are the same.
    def records():
This commit is contained in:
kbaikov 2021-08-22 16:29:22 +02:00
parent 01e717b60a
commit fa1cd6bd5e
5 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@ import pytest
import schedule_v1 as schedule
@pytest.yield_fixture
@pytest.fixture
def records():
yield schedule.load(schedule.JSON_PATH)

View File

@ -2,7 +2,7 @@ import pytest
import schedule_v2 as schedule
@pytest.yield_fixture
@pytest.fixture
def records():
yield schedule.load(schedule.JSON_PATH)

View File

@ -2,7 +2,7 @@ import pytest
import schedule_v3 as schedule
@pytest.yield_fixture
@pytest.fixture
def records():
yield schedule.load(schedule.JSON_PATH)

View File

@ -2,7 +2,7 @@ import pytest
import schedule_v4 as schedule
@pytest.yield_fixture
@pytest.fixture
def records():
yield schedule.load(schedule.JSON_PATH)

View File

@ -2,7 +2,7 @@ import pytest
import schedule_v5 as schedule
@pytest.yield_fixture
@pytest.fixture
def records():
yield schedule.load(schedule.JSON_PATH)