Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SUBPROJECT_ID setting #213

Merged
merged 15 commits into from
Aug 15, 2023
2 changes: 1 addition & 1 deletion tests/end_to_end/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def code_path(request):
@pytest.fixture
def subproject_id(request):
mark = request.node.get_closest_marker("subproject_id")
return mark.args[0] if mark else None
kieferro marked this conversation as resolved.
Show resolved Hide resolved
return mark.args[0] if mark else "null"


@pytest.fixture
Expand Down
Loading