-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Multi-package tests were missing in the CI and they are important. This adds them.
- Loading branch information
Showing
4 changed files
with
93 additions
and
4 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,11 @@ def is_synced(self): | |
eprint(response.text) | ||
return response.json()["isFullySynched"] | ||
|
||
network().warm_up() | ||
try: | ||
network().warm_up() | ||
except: | ||
subprocess.run(["systemctl", "--user", "status", "[email protected]"]) | ||
raise | ||
|
||
nbxplorer = NBXplorer() | ||
|
||
|
@@ -50,6 +54,8 @@ def is_synced(self): | |
|
||
chrome_options = webdriver.ChromeOptions() | ||
chrome_options.add_argument("ignore-certificate-errors") | ||
if "DISPLAY" not in os.environ: | ||
chrome_options.add_argument("headless=new") | ||
driver = webdriver.Chrome(chrome_options=chrome_options) | ||
|
||
eprint("Registering an admin account") | ||
|
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