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

#721 delay it #732

Closed
wants to merge 5 commits into from
Closed
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: 0 additions & 3 deletions integration-tests/features/smoketest.feature
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ Feature: Smoketest
| overall_coverage | 41.2 |
| overall_line_coverage | 39.5 |
| overall_branch_coverage | 50 |
# design/tangles
| package_tangle_index | 66.7 |
| package_tangles | 1 |
# test execution statistics
| test_success_density | 50 |
| test_failures | 2 |
Expand Down
3 changes: 3 additions & 0 deletions integration-tests/features/steps/test_execution_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
from requests.auth import HTTPBasicAuth
import subprocess
import shutil
import time
from behave import given, when, then, model
from common import analyselog, build_regexp, sonarlog, analyseloglines

Expand Down Expand Up @@ -112,6 +113,8 @@ def step_impl(context, command):

@then(u'the analysis finishes successfully')
def step_impl(context):
# delays for 60 seconds
time.sleep(60)
assert context.rc == 0, "Exit code is %i, but should be zero" % context.rc


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ Feature: GoogleTestWithBullseyeAndVsProject
| coverage | 88.9 |
| line_coverage | 100 |
| branch_coverage | 50 |
# design/tangles
| package_tangle_index | 0 |
| package_tangles | 0 |
# test execution statistics
| test_success_density | 50 |
| test_failures | 1 |
Expand Down