-
Notifications
You must be signed in to change notification settings - Fork 193
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
Simplify integration test workflow fixes #1914 #2354
Merged
Merged
Changes from 6 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
23df915
Simplify integration test workflow fixes #1914
jaredlockhart 087cedc
Separate kill into two commands for the full stack with normandy/dc
jaredlockhart 188993f
Suppress errors from failing to remove volumes
jaredlockhart ee4874d
Try again to suppress volume rm errors
jaredlockhart ae113ad
Integration tests need a bugzilla host to pass
jaredlockhart 72dd270
Fixed vnc up detached command
jaredlockhart f61731c
Merge branch 'master' into 1914
jaredlockhart a26d5d3
Restore and skip failing test
jaredlockhart a89f2e7
Merge branch 'master' into 1914
jaredlockhart 89444f0
Update README
jaredlockhart File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import os | ||
|
||
import pytest | ||
import requests | ||
from requests.packages.urllib3.util.retry import Retry | ||
|
@@ -6,6 +8,11 @@ | |
from pages.home import Home | ||
|
||
|
||
@pytest.fixture | ||
def ds_issue_host(): | ||
return os.environ["DS_ISSUE_HOST"] | ||
|
||
|
||
@pytest.fixture | ||
def capabilities(capabilities): | ||
capabilities["acceptInsecureCerts"] = True | ||
|
@@ -15,7 +22,7 @@ def capabilities(capabilities): | |
@pytest.fixture | ||
def firefox_options(firefox_options): | ||
"""Set Firefox Options.""" | ||
firefox_options.headless = True | ||
firefox_options.headless = not bool(os.environ.get("DISABLE_HEADLESS")) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can get rid of this line and just use the env variable There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I couldn't get it to work quickly so I filed it as a followup: |
||
firefox_options.log.level = "trace" | ||
return firefox_options | ||
|
||
|
@@ -32,13 +39,13 @@ def _verify_url(request, base_url): | |
|
||
|
||
@pytest.fixture | ||
def fill_overview(selenium, base_url): | ||
def fill_overview(selenium, base_url, ds_issue_host): | ||
selenium.get(base_url) | ||
home = Home(selenium, base_url).wait_for_page_to_load() | ||
experiment = home.create_experiment() | ||
experiment.name = "This is a test" | ||
experiment.short_description = "Testing in here" | ||
experiment.public_name = "Public Name" | ||
experiment.public_description = "Public Description" | ||
experiment.bugzilla_url = "https://jira.mozilla.com/browse/DS-123" | ||
experiment.ds_issue_url = f"{ds_issue_host}DS-12345" | ||
return experiment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think instead of having 2 services, we could just use the
MOZ_HEADLESS
env variable. If it is set then the tests would not be viewable through the vnc server.