Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

ci: Remove prerelease conditions from Azure Pipelines#27704

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
dstansby merged 1 commit intomatplotlib:mainfromQuLogic:no-azure-prerel
Jan 30, 2024
Merged
Changes fromall 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
18 changes: 4 additions & 14 deletionsazure-pipelines.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -78,13 +78,6 @@ stages:
versionSpec: '$(python.version)'
architecture: 'x64'
displayName: 'Use Python $(python.version)'
condition: and(succeeded(), ne(variables['python.version'], 'Pre'))

- task: stevedower.python.InstallPython.InstallPython@1
displayName: 'Use prerelease Python'
inputs:
prerelease: true
condition: and(succeeded(), eq(variables['python.version'], 'Pre'))

- bash: |
set -e
Expand DownExpand Up@@ -136,8 +129,7 @@ stages:
- bash: |
python -m pip install --upgrade pip
python -m pip install --upgrade meson-python pybind11
python -m pip install -r requirements/testing/all.txt -r requirements/testing/extra.txt ||
[[ "$PYTHON_VERSION" = 'Pre' ]]
python -m pip install -r requirements/testing/all.txt -r requirements/testing/extra.txt
displayName: 'Install dependencies with pip'

- bash: |
Expand All@@ -161,8 +153,7 @@ stages:

python -m pip install \
--no-build-isolation $CONFIG \
--verbose --editable .[dev] ||
[[ "$PYTHON_VERSION" = 'Pre' ]]
--verbose --editable .[dev]
displayName: "Install self"

- script: env
Expand DownExpand Up@@ -227,8 +218,7 @@ stages:
fi
PYTHONFAULTHANDLER=1 pytest -raR -n 2 \
--maxfail=50 --timeout=300 --durations=25 \
--junitxml=junit/test-results.xml --cov-report=xml --cov=lib ||
[[ "$PYTHON_VERSION" = 'Pre' ]]
--junitxml=junit/test-results.xml --cov-report=xml --cov=lib
if [[ -n $SESSION_ID ]]; then
if [[ $VS_VER == 2022 ]]; then
"$TOOL" shutdown $SESSION_ID
Expand DownExpand Up@@ -285,4 +275,4 @@ stages:

- publish: $(System.DefaultWorkingDirectory)/result_images
artifact: $(Agent.JobName)-result_images
condition:and(failed(), ne(variables['python.version'], 'Pre'))
condition: failed()

[8]ページ先頭

©2009-2025 Movatter.jp