You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ uv run pytest test/functional/ios/search_context/find_by_ios_class_chain_tests.py
503
+
uv run pytest test/functional/ios/search_context/find_by_ios_class_chain_tests.py
504
504
```
505
505
506
506
#### In parallel for iOS
@@ -509,20 +509,21 @@ $ uv run pytest test/functional/ios/search_context/find_by_ios_class_chain_tests
509
509
1. Run tests
510
510
511
511
```bash
512
-
$ uv run pytest -n 2 test/functional/ios/search_context/find_by_ios_class_chain_tests.py
512
+
uv run pytest -n 2 test/functional/ios/search_context/find_by_ios_class_chain_tests.py
513
513
```
514
514
515
515
## Release
516
516
517
517
Follow the below steps.
518
518
519
519
```bash
520
-
$ pip install twine
521
-
$ pip install git+git://github.com/vaab/gitchangelog.git # Getting via GitHub repository is necessary for Python 3.7
520
+
uv pip install setuptools
521
+
uv pip install twine
522
+
uv pip install git+https://github.com/vaab/gitchangelog.git # Getting via GitHub repository is necessary for Python 3.7
522
523
# Type the new version number and 'yes' if you can publish it
523
524
# You can test the command with DRY_RUN
524
-
$ DRY_RUN=1 ./release.sh
525
-
$ ./release.sh # release
525
+
DRY_RUN=1 ./release.sh
526
+
./release.sh # release
526
527
```
527
528
528
529
If the `pypi` was not able to publish with user name and password, please try out `-u` and `-p` option by yourself with `twine` such as `twine upload -u <name> -p <pass> dist/Appium-Python-Client-4.1.0.tar.gz`.
0 commit comments