mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
18 lines
303 B
Python
18 lines
303 B
Python
# Exists only for completion/pytest.py
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture()
|
|
def my_other_conftest_fixture():
|
|
return 1.0
|
|
|
|
|
|
@pytest.fixture()
|
|
def my_conftest_fixture(my_other_conftest_fixture):
|
|
return my_other_conftest_fixture
|
|
|
|
|
|
def my_not_existing_fixture():
|
|
return 3 # Just a normal function
|