-
Notifications
You must be signed in to change notification settings - Fork 1
SG-40980 Simplify Azure Pipeline CI pipeline #70
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,9 +12,9 @@ parameters: | |
| # Name of the virtual machine image to load. | ||
| image_name: "" | ||
| # Name of the Qt wrapper to pip install. Should be PySide or PySide2 | ||
| qt_wrapper: PySide2==5.15.2.1 | ||
| qt_wrapper: '' | ||
| # Python version to use. | ||
| python_version: 3.7 | ||
| python_version: '' | ||
|
||
| # List of Python packages that need to be pip installed for testing. | ||
| extra_test_dependencies: [] | ||
| # Pretty name for the job. | ||
|
|
@@ -40,13 +40,10 @@ parameters: | |
| # - bash: do_something | ||
| # - bash: do_something_else | ||
| post_tests_steps: [] | ||
| # When set to true, the agents for all platforms are set so tests can be executed | ||
| # on all platforms. | ||
| has_unit_tests: true | ||
|
|
||
| jobs: | ||
| - job: | ||
| displayName: ${{ parameters.job_name }} Python ${{ parameters.python_version }} | ||
| displayName: ${{ parameters.job_name }} | ||
| pool: | ||
| vmImage: ${{ parameters.image_name }} | ||
| steps: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changing the default value from 'PySide2==5.15.2.1' to an empty string could break existing callers that don't explicitly pass qt_wrapper. Consider keeping the original default or documenting that this parameter is now required.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Invalid. I control who calls internal/run-tests-with.yml. It's only in this repository.