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

WIP: Create Nominal Test MR To Check Bot #1411

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/buildstream/_frontend/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import sys
import traceback
import datetime
import time
from textwrap import TextWrapper
import click
from click import UsageError
Expand Down Expand Up @@ -59,7 +60,7 @@
#
class App:
def __init__(self, main_options):

time.sleep(5)
#
# Public members
#
Expand Down
2 changes: 1 addition & 1 deletion tests/format/variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def test_missing_variable(cli, datafiles, element):
result.assert_main_error(ErrorDomain.LOAD, LoadErrorReason.UNRESOLVED_VARIABLE)


@pytest.mark.timeout(3, method="signal")
@pytest.mark.timeout(30, method="signal")
@pytest.mark.datafiles(os.path.join(DATA_DIR, "cyclic_variables"))
def test_cyclic_variables(cli, datafiles):
print_warning("Performing cyclic test, if this test times out it will " + "exit the test sequence")
Expand Down