We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16b7d65 commit b19444dCopy full SHA for b19444d
.github/workflows/smoke.yml
@@ -159,7 +159,7 @@ jobs:
159
env:
160
FX_EXECUTABLE: /Volumes/${{ steps.setup.outputs.app_name }}/${{ steps.setup.outputs.app_name }}.app/Contents/MacOS/firefox
161
run: |
162
- /Volumes/Firefox/Firefox.app/Contents/MacOS/firefox --version
+ $FX_EXECUTABLE --version
163
pipenv run python choose_ci_set.py
164
pipenv run pytest --fx-executable="$FX_EXECUTABLE" -n 4 $(cat selected_tests) || TEST_EXIT_CODE=$?
165
mv artifacts artifacts-mac || true
tests/pdf_viewer/test_add_image_pdf.py
@@ -13,6 +13,11 @@
13
DELETE_MENU_OPTION = "pdfjs-delete"
14
15
16
+@pytest.fixture()
17
+def hard_quit():
18
+ return True
19
+
20
21
@pytest.fixture()
22
def test_case():
23
return "2228202"
0 commit comments