henry pushed to branch tor-browser-147.0a1-16.0-2 at The Tor Project / Applications / Tor Browser
Commits:
-
30b4b8bb
by Henry Wilkes at 2026-01-26T13:22:48+00:00
-
bad52bb0
by Henry Wilkes at 2026-01-26T13:22:48+00:00
3 changed files:
- .gitlab/ci/jobs/startup-test/startup-test.py
- testing/tor/test_circuit_isolation.py
- testing/tor/test_network_check.py
Changes:
| ... | ... | @@ -97,5 +97,6 @@ subprocess.run( |
| 97 | 97 | download_url,
|
| 98 | 98 | "--thing-to-run",
|
| 99 | 99 | binary,
|
| 100 | - ]
|
|
| 100 | + ],
|
|
| 101 | + check=True,
|
|
| 101 | 102 | ) |
| ... | ... | @@ -10,7 +10,7 @@ TOR_BOOTSTRAP_TIMEOUT = 30000 # 30s |
| 10 | 10 | class TestCircuitIsolation(MarionetteTestCase):
|
| 11 | 11 | def tearDown(self):
|
| 12 | 12 | self.marionette.restart(in_app=False, clean=True)
|
| 13 | - super(TestCircuitIsolation, self).tearDown()
|
|
| 13 | + super().tearDown()
|
|
| 14 | 14 | |
| 15 | 15 | def bootstrap(self):
|
| 16 | 16 | with self.marionette.using_context("chrome"):
|
| ... | ... | @@ -16,7 +16,7 @@ class TestNetworkCheck(MarionetteTestCase): |
| 16 | 16 | |
| 17 | 17 | def tearDown(self):
|
| 18 | 18 | self.marionette.restart(in_app=False, clean=True)
|
| 19 | - super(TestNetworkCheck, self).tearDown()
|
|
| 19 | + super().tearDown()
|
|
| 20 | 20 | |
| 21 | 21 | def attemptConnection(self, tries=1):
|
| 22 | 22 | if tries > 3:
|