Skip to content

PLEASE IGNORE Ben/chooser #535

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ jobs:
$env:FX_EXECUTABLE = "C:\Program Files\Custom Firefox\firefox.exe"
Start-Process -FilePath $env:FX_EXECUTABLE -ArgumentList "--version" -Wait -NoNewWindow
pipenv run python choose_ci_set.py
git --no-pager diff --name-only origin/main
pipenv run pytest -n 4 $(cat selected_tests)
$env:TEST_EXIT_CODE = $LASTEXITCODE
mv artifacts artifacts-win || true
Expand Down Expand Up @@ -161,6 +162,7 @@ jobs:
run: |
"$FX_EXECUTABLE" --version
pipenv run python choose_ci_set.py
git --no-pager diff --name-only origin/main
pipenv run pytest --fx-executable="$FX_EXECUTABLE" -n 4 $(cat selected_tests) || TEST_EXIT_CODE=$?
mv artifacts artifacts-mac || true
exit $TEST_EXIT_CODE
Expand Down
1 change: 1 addition & 0 deletions modules/browser_object_tabbar.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# testing testing
import logging
from typing import Union

Expand Down
1 change: 1 addition & 0 deletions taskcluster/kinds/run-smoke-tests/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ tasks:
./firefox/firefox --version;
. ./keyring-unlock.sh
pipenv run python3 choose_ci_set.py
git --no-pager diff --name-only origin/main
pipenv run pytest --fx-executable ./firefox/firefox -n 4 $(cat selected_tests)
export FAILURE=${?}
mv ./ci_pyproject_headed.toml ./pyproject.toml;
Expand Down