Skip to content

Commit

Permalink
Replace pytest-lazy-fixture with pytest-lazy-fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
YannickJadoul committed Aug 4, 2024
1 parent 25c75f3 commit deb9643
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r ../requirements.txt

pytest<8
pytest-lazy-fixture
pytest
pytest-lazy-fixtures

tgt
4 changes: 2 additions & 2 deletions tests/resource_fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
# along with Parselmouth. If not, see <http://www.gnu.org/licenses/>

import pytest
import pytest_lazyfixture
import pytest_lazy_fixtures

import parselmouth


def combined_fixture(*args, **kwargs):
return pytest.fixture(params=map(pytest_lazyfixture.lazy_fixture, args), ids=args, **kwargs)
return pytest.fixture(params=map(pytest_lazy_fixtures.lf, args), ids=args, **kwargs)


@pytest.fixture
Expand Down

0 comments on commit deb9643

Please sign in to comment.