Skip to content

Commit 2395b96

Browse files
rename the file choose_ci_set (#960)
1 parent 6a2e044 commit 2395b96

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
pipenv run python -c "import sys; print(sys.platform)"
119119
$env:FX_EXECUTABLE = "C:\Program Files\Custom Firefox\firefox.exe"
120120
Start-Process -FilePath $env:FX_EXECUTABLE -ArgumentList "--version" -Wait -NoNewWindow
121-
pipenv run python choose_ci_set.py
121+
pipenv run python choose_test_split.py
122122
pipenv run pytest $(cat selected_tests) --geckodriver=geckodriver.exe
123123
$env:TEST_EXIT_CODE = $LASTEXITCODE
124124
mv artifacts artifacts-win || true
@@ -131,7 +131,7 @@ jobs:
131131
rm ./pyproject.toml;
132132
mv ./ci_pyproject_headed.toml ./pyproject.toml;
133133
$env:FX_EXECUTABLE = "C:\Program Files\Custom Firefox\firefox.exe"
134-
pipenv run python choose_ci_set.py
134+
pipenv run python choose_test_split.py
135135
pipenv run pytest $(cat selected_tests) --geckodriver=geckodriver.exe
136136
$env:TEST_EXIT_CODE = $LASTEXITCODE
137137
rm artifacts/assets -r -Force
@@ -204,7 +204,7 @@ jobs:
204204
FX_EXECUTABLE: /Volumes/${{ steps.setup.outputs.app_name }}/${{ steps.setup.outputs.app_name }}.app/Contents/MacOS/firefox
205205
run: |
206206
"$FX_EXECUTABLE" --version
207-
pipenv run python choose_ci_set.py
207+
pipenv run python choose_test_split.py
208208
pipenv run pytest --fx-executable="$FX_EXECUTABLE" $(cat selected_tests) || TEST_EXIT_CODE=$?
209209
mv artifacts artifacts-mac || true
210210
exit $TEST_EXIT_CODE
@@ -215,7 +215,7 @@ jobs:
215215
REPORTABLE: true
216216
run: |
217217
mv ./ci_pyproject_headed.toml ./pyproject.toml;
218-
pipenv run python choose_ci_set.py
218+
pipenv run python choose_test_split.py
219219
pipenv run pytest --fx-executable="$FX_EXECUTABLE" $(cat selected_tests) || TEST_EXIT_CODE=$?
220220
mv -n artifacts/* artifacts-mac/ || true
221221
exit $TEST_EXIT_CODE
@@ -265,7 +265,7 @@ jobs:
265265
FX_EXECUTABLE: ./firefox/firefox
266266
run: |
267267
"$FX_EXECUTABLE" --version;
268-
pipenv run python choose_ci_set.py;
268+
pipenv run python choose_test_split.py;
269269
Xvfb :99 -screen 0 '1600x1200x24' > artifacts/xvfb.log &
270270
DISPLAY=:99 pipenv run pytest --fx-executable="$FX_EXECUTABLE" $(cat selected_tests) || TEST_EXIT_CODE=$?
271271
exit $TEST_EXIT_CODE
@@ -275,7 +275,7 @@ jobs:
275275
FX_EXECUTABLE: ./firefox/firefox
276276
run: |
277277
mv ./ci_xvfb_pyproject_headed.toml ./pyproject.toml;
278-
pipenv run python choose_ci_set.py
278+
pipenv run python choose_test_split.py
279279
DISPLAY=:99 pipenv run pytest --fx-executable="$FX_EXECUTABLE" $(cat selected_tests) || TEST_EXIT_CODE=$?
280280
exit $TEST_EXIT_CODE
281281
File renamed without changes.

taskcluster/kinds/new-beta-func/kind.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ tasks:
4444
pipenv run python -c 'from modules import testrail_integration as tri; tri.tc_reportable()' || exit 0;
4545
$FX_EXECUTABLE --version;
4646
. ./keyring-unlock.sh
47-
pipenv run python choose_ci_set.py;
47+
pipenv run python choose_test_split.py;
4848
pipenv run pytest --fx-executable $FX_EXECUTABLE $(cat selected_tests);
4949
export FAILURE=${?};
5050
mv ./ci_pyproject_headed.toml ./pyproject.toml;

taskcluster/kinds/new-beta-qa/kind.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ tasks:
4343
pipenv run python -c 'from modules import testrail_integration as tri; tri.tc_reportable()' || exit 0;
4444
$FX_EXECUTABLE --version;
4545
. ./keyring-unlock.sh
46-
pipenv run python choose_ci_set.py;
46+
pipenv run python choose_test_split.py;
4747
pipenv run pytest --fx-executable $FX_EXECUTABLE $(cat selected_tests);
4848
export FAILURE=${?};
4949
mv ./ci_pyproject_headed.toml ./pyproject.toml;

taskcluster/kinds/new-devedition-qa/kind.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ tasks:
4343
pipenv run python -c 'from modules import testrail_integration as tri; tri.tc_reportable()' || exit 0;
4444
$FX_EXECUTABLE --version;
4545
. ./keyring-unlock.sh
46-
pipenv run python choose_ci_set.py
46+
pipenv run python choose_test_split.py
4747
pipenv run pytest --fx-executable $FX_EXECUTABLE $(cat selected_tests);
4848
export FAILURE=${?};
4949
mv ./ci_pyproject_headed.toml ./pyproject.toml;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ tasks:
3434
./firefox/firefox --version;
3535
. ./keyring-unlock.sh
3636
if [[ ! $(python3 choose_test_channel.py) =~ "smoke" ]]; then exit 0; fi
37-
pipenv run python3 choose_ci_set.py
37+
pipenv run python3 choose_test_split.py
3838
pipenv run pytest --fx-executable ./firefox/firefox -n 4 $(cat selected_tests)
3939
export FAILURE=${?}
4040
mv ./ci_pyproject_headed.toml ./pyproject.toml;
41-
pipenv run python3 choose_ci_set.py
41+
pipenv run python3 choose_test_split.py
4242
pipenv run pytest --fx-executable ./firefox/firefox $(cat selected_tests)
4343
exit $((${?} | ${FAILURE}))
4444
notify:

0 commit comments

Comments
 (0)