@@ -112,16 +112,12 @@ jobs:
112
112
--ignore @requestnetwork/smart-contracts \
113
113
--ignore @requestnetwork/payment-detection \
114
114
--ignore @requestnetwork/payment-processor \
115
- --ignore @requestnetwork/integration-test \
116
- -- \
117
- --ci \
118
- --reporters=default \
119
- --reporters=jest-junit'
115
+ --ignore @requestnetwork/integration-test'
120
116
environment :
121
- JEST_JUNIT_OUTPUT_DIR : ' ./reports/junit/ '
122
- JEST_JUNIT_OUTPUT_NAME : ' results.xml'
117
+ JEST_JUNIT_OUTPUT_DIR : ' ./reports'
118
+ JEST_JUNIT_OUTPUT_NAME : ' jest- results.xml'
123
119
- store_test_results :
124
- path : reports/junit/
120
+ path : reports
125
121
test-integration-with-smart-contracts :
126
122
docker :
127
123
- *node_image
@@ -145,16 +141,12 @@ jobs:
145
141
--scope @requestnetwork/request-client.js \
146
142
--scope @requestnetwork/smart-contracts \
147
143
--scope @requestnetwork/payment-detection \
148
- --scope @requestnetwork/payment-processor \
149
- -- \
150
- --ci \
151
- --reporters=default \
152
- --reporters=jest-junit'
144
+ --scope @requestnetwork/payment-processor'
153
145
environment :
154
- JEST_JUNIT_OUTPUT_DIR : ' ./reports/junit/ '
155
- JEST_JUNIT_OUTPUT_NAME : ' results.xml'
146
+ JEST_JUNIT_OUTPUT_DIR : ' ./reports'
147
+ JEST_JUNIT_OUTPUT_NAME : ' jest- results.xml'
156
148
- store_test_results :
157
- path : reports/junit/
149
+ path : reports
158
150
test-integration-with-request-node :
159
151
docker :
160
152
- *node_image
@@ -180,16 +172,12 @@ jobs:
180
172
name : ' Test integration-test'
181
173
command : ' yarn test \
182
174
--since master \
183
- --scope @requestnetwork/integration-test \
184
- -- \
185
- --ci \
186
- --reporters=default \
187
- --reporters=jest-junit'
175
+ --scope @requestnetwork/integration-test'
188
176
environment :
189
- JEST_JUNIT_OUTPUT_DIR : ' ./reports/junit/ '
190
- JEST_JUNIT_OUTPUT_NAME : ' results.xml'
177
+ JEST_JUNIT_OUTPUT_DIR : ' ./reports'
178
+ JEST_JUNIT_OUTPUT_NAME : ' jest- results.xml'
191
179
- store_test_results :
192
- path : reports/junit/
180
+ path : reports
193
181
test-usage-examples :
194
182
docker :
195
183
- *node_image
@@ -236,18 +224,18 @@ jobs:
236
224
- run : *step_wait_for_node
237
225
- run :
238
226
name : ' Test integration-test (erc20)'
239
- command : ' yarn workspace @requestnetwork/integration-test run test:erc20 --ci --maxWorkers=1 --reporters=default --reporters=jest-junit '
227
+ command : ' yarn workspace @requestnetwork/integration-test run test:erc20'
240
228
environment :
241
- JEST_JUNIT_OUTPUT_DIR : ' ./reports/junit/ '
229
+ JEST_JUNIT_OUTPUT_DIR : ' ./reports'
242
230
JEST_JUNIT_OUTPUT_NAME : ' erc20-results.xml'
243
231
- run :
244
232
name : ' Test integration-test (btc)'
245
- command : ' yarn workspace @requestnetwork/integration-test run test:btc --ci --maxWorkers=1 --reporters=default --reporters=jest-junit '
233
+ command : ' yarn workspace @requestnetwork/integration-test run test:btc'
246
234
environment :
247
- JEST_JUNIT_OUTPUT_DIR : ' ./reports/junit/ '
235
+ JEST_JUNIT_OUTPUT_DIR : ' ./reports'
248
236
JEST_JUNIT_OUTPUT_NAME : ' btc-results.xml'
249
237
- store_test_results :
250
- path : reports/junit/
238
+ path : reports
251
239
252
240
# Release a next version package everytime we merge to master
253
241
next-release :
0 commit comments