Feiyue Yu
Feiyue Yu
pytest has a parameter ``` -x, --exitfirst exit instantly on first error or failed test. ``` while azdev test has a opposite parameter ``` --no-exitfirst : Do not exit on...
A real customer's requirement: install all extensions from source code using one command instead of typing every extension name. E.g. ``` azdev extension add-all ```
When pytest upgrates from 6.0.2 to 6.1.0, azdev is broken. https://docs.pytest.org/en/stable/changelog.html#changelog ``` Traceback (most recent call last): File "/opt/hostedtoolcache/Python/3.8.5/x64/lib/python3.8/runpy.py", line 194, in _run_module_as_main return _run_code(code, main_globals, None, File "/opt/hostedtoolcache/Python/3.8.5/x64/lib/python3.8/runpy.py", line...
Add a parameter `--max-retry`. ``` --max-retry Max retry times on test failure. Default value is 0. ```
--- This checklist is used to make sure that common guidelines for a pull request are followed. ### General Guidelines - [ ] Have you run `azdev style ` locally?...
If I use ``` [?a.b c==`value`].a ``` it will report an error. May I know how to select "b c"? Look forward to your answer.
Generated code has a Python style error. ``` C:\yfy\azure-cli-extensions\src\cloudservice\azext_cloudservice\tests\__init__.py:57:4: R1710: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements) ``` Source code:...
I used autorest to generate cloud service commands. A cloud service has many parameters. But update command can update nothing. Is special configuration required? [Readme file](https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.az.md) ``` > az cloud-service...
**Why do you need this feature?** We need to have the ability to specify API version. **Is your feature request related to a problem? Please describe.** ### Question 1 These...