Skip to content

Commit 256e7c0

Browse files
committed
change execution
1 parent 78cd777 commit 256e7c0

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

taskcluster/kinds/run-smoke-tests/kind.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ tasks:
2424
./collect_executables.sh;
2525
mv ./ci_pyproject.toml ./pyproject.toml;
2626
pipenv install;
27-
pipenv run pytest --fx-executable ./firefox/firefox -n 4
27+
pipenv run pytest --fx-executable ./firefox/firefox -n 4 .

tests/security_and_privacy/test_third_party_content_blocked_private_browsing.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717
SECOND_TRACKER_WEBSITE = "https://www.itisatrap.org/firefox/its-a-tracker.html"
1818

1919

20-
def test_third_party_content_blocked_private_browsing_cross_site(
21-
driver: Firefox
22-
):
20+
def test_third_party_content_blocked_private_browsing_cross_site(driver: Firefox):
2321
"""
2422
C446323.1: Ensure that third party content is blocked correctly
2523
"""
@@ -60,9 +58,7 @@ def test_third_party_content_blocked_private_browsing_cross_site(
6058
assert found_tracker
6159

6260

63-
def test_third_party_content_blocked_private_browsing_allowed_tracking(
64-
driver: Firefox
65-
):
61+
def test_third_party_content_blocked_private_browsing_allowed_tracking(driver: Firefox):
6662
"""
6763
C446323.2: Ensure that some third party content is allowed
6864
"""
@@ -100,9 +96,7 @@ def test_third_party_content_blocked_private_browsing_allowed_tracking(
10096
assert item.get_attribute("value") in ALLOWED_TRACKING_URLS
10197

10298

103-
def test_third_party_content_private_browsing_tracking_statuses(
104-
driver: Firefox
105-
):
99+
def test_third_party_content_private_browsing_tracking_statuses(driver: Firefox):
106100
"""
107101
C446323.3: Ensure that the statuses of some third party content are loaded properly
108102
"""

0 commit comments

Comments
 (0)