Files
openide/python/testData/testCompletion/test_parametrize_transitive_fixture.py
chbndrhnnsandintellij-monorepo-bot 5bf6ba9171 [python] PY-72251 Missing test run gutter icon for nested test classes
Merge-request: IJ-MR-181090
Merged-by: Egor Eliseev <Egor.Eliseev@jetbrains.com>

GitOrigin-RevId: 24276544dc2d1111f173b6e16c7abb328f1d5632
2025-11-03 20:35:21 +00:00

19 lines
384 B
Python

# Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
import pytest
@pytest.fixture
def number_of_things():
return 1
@pytest.fixture
def actual_fixture(number_of_things):
return range(number_of_things)
@pytest.mark.parametrize("number_of_things", [2])
def test_something_else(actual_fixture):
pass