@@ -71,34 +71,50 @@ jobs:
71
71
run : |
72
72
source tests/ci.sh && ci_configure_softhsm
73
73
74
- - name : ' ☁️ Connect to IoT cloud (CPython / Basic Auth)'
74
+ - name : ' ☁️ Connect to IoT cloud (CPython / Basic Auth / Async )'
75
75
env :
76
76
DEVICE_ID : ${{ secrets.DEVICE_ID1 }}
77
77
SECRET_KEY : ${{ secrets.SECRET_KEY }}
78
78
run : |
79
79
python tests/ci.py --basic-auth
80
80
81
- - name : ' ☁️ Connect to IoT cloud (CPython / Key/Cert Auth)'
81
+ - name : ' ☁️ Connect to IoT cloud (CPython / Basic Auth / Sync)'
82
+ env :
83
+ DEVICE_ID : ${{ secrets.DEVICE_ID1 }}
84
+ SECRET_KEY : ${{ secrets.SECRET_KEY }}
85
+ run : |
86
+ python tests/ci.py --basic-auth --sync
87
+
88
+ - name : ' ☁️ Connect to IoT cloud (CPython / Key-Cert Auth / Async)'
82
89
env :
83
90
DEVICE_ID : ${{ secrets.DEVICE_ID2 }}
84
91
SECRET_KEY : ${{ secrets.SECRET_KEY }}
85
92
run : |
86
93
python tests/ci.py --file-auth
87
94
88
95
89
- - name : ' ☁️ Connect to IoT cloud (CPython / Crypto Auth)'
96
+ - name : ' ☁️ Connect to IoT cloud (CPython / Crypto Auth / Async )'
90
97
env :
91
98
DEVICE_ID : ${{ secrets.DEVICE_ID2 }}
92
99
SECRET_KEY : ${{ secrets.SECRET_KEY }}
93
100
run : |
94
101
export SOFTHSM2_CONF="${HOME}/softhsm/tokens/softhsm2.conf"
95
102
python tests/ci.py --crypto-device
96
103
97
- - name : ' ☁️ Connect to IoT cloud (MicroPython / Basic Auth)'
104
+ - name : ' ☁️ Connect to IoT cloud (MicroPython / Basic Auth / Async )'
98
105
env :
99
106
DEVICE_ID : ${{ secrets.DEVICE_ID1 }}
100
107
SECRET_KEY : ${{ secrets.SECRET_KEY }}
101
108
run : |
102
109
export PATH="${HOME}/cache/bin:${PATH}"
103
110
micropython -c "import sys; print(sys.path)"
104
111
micropython tests/ci.py --basic-auth
112
+
113
+ - name : ' ☁️ Connect to IoT cloud (MicroPython / Basic Auth / Sync)'
114
+ env :
115
+ DEVICE_ID : ${{ secrets.DEVICE_ID1 }}
116
+ SECRET_KEY : ${{ secrets.SECRET_KEY }}
117
+ run : |
118
+ export PATH="${HOME}/cache/bin:${PATH}"
119
+ micropython -c "import sys; print(sys.path)"
120
+ micropython tests/ci.py --basic-auth --sync
0 commit comments