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
Packages under this repo mainly use semantic versioning. Sometimes a bug fix version may contain some non-breaking new features as well.
18
+
19
+
It is recommended to use `~=1.0` to get rid of breaking changes, and use the latest new features. For example,
20
+
21
+
```shell
22
+
pip install -U pytest-embedded~=1.0
23
+
```
24
+
25
+
## Quickstart
20
26
21
-
-`pip install pytest-embedded`
27
+
-`pip install -U pytest-embedded~=1.0`
22
28
- Create a file `test_basic.py`
23
29
24
30
```python
@@ -60,8 +66,7 @@ The `print` line is also duplicated to console output.
60
66
61
67
## Extra Services
62
68
63
-
You can activate more services with `pytest --embedded-services service[,service]` to enable extra fixtures and functionalities.
64
-
These services are provided by several optional dependencies. You can install them via `pip` as well.
69
+
You can activate more services with `pytest --embedded-services service[,service]` to enable extra fixtures and functionalities. These services are provided by several optional dependencies. You can install them via `pip` as well.
65
70
66
71
Available services:
67
72
@@ -77,7 +82,3 @@ Available services:
77
82
78
83
- Documentation is hosted at [https://docs.espressif.com/projects/pytest-embedded/en/latest/](https://docs.espressif.com/projects/pytest-embedded/en/latest/)
79
84
- More examples under [examples](https://github.com/espressif/pytest-embedded/tree/main/examples)
80
-
81
-
## Versioning
82
-
83
-
Packages under this repo mainly use semantic versioning. Sometimes a bug fix version may contain some non-breaking new features as well. It is recommended to use `pytest-embdded~=1.0` to get rid of breaking changes, and use the latest new features.
0 commit comments