@@ -174,7 +174,7 @@ def linuxTesting(file, env_name, network_name, stashBuildResults) {
174174 sh " RUST_BACKTRACE=1 cargo test --release --no-run"
175175
176176 echo " ${ env_name} Libindy Test: Run tests"
177- sh " RUST_BACKTRACE=1 RUST_LOG=indy::,zmq=trace RUST_TEST_THREADS=1 TEST_POOL_IP=10.0.0.2 cargo test --release"
177+ sh " RUST_BACKTRACE=1 RUST_LOG=indy::=debug ,zmq=trace RUST_TEST_THREADS=1 TEST_POOL_IP=10.0.0.2 cargo test --release"
178178
179179 if (stashBuildResults) {
180180 stash includes : ' target/release/libindy.so,target/release/libindy.a' , name : ' LibindyUbuntuBuildResult'
@@ -197,7 +197,7 @@ def linuxTesting(file, env_name, network_name, stashBuildResults) {
197197 testEnv. inside(" --ip=\" 10.0.0.3\" --network=${ network_name} " ) {
198198 echo " ${ env_name} Libindy Test: Test java wrapper"
199199
200- sh " RUST_LOG=indy::,zmq=trace TEST_POOL_IP=10.0.0.2 mvn clean test"
200+ sh " RUST_LOG=indy::=debug ,zmq=trace TEST_POOL_IP=10.0.0.2 mvn clean test"
201201 }
202202 }
203203
@@ -208,7 +208,7 @@ def linuxTesting(file, env_name, network_name, stashBuildResults) {
208208
209209 sh '''
210210 python3.5 -m pip install --user -e .
211- LD_LIBRARY_PATH=./:${LD_LIBRARY_PATH} RUST_LOG=indy::,zmq=trace TEST_POOL_IP=10.0.0.2 python3.5 -m pytest
211+ LD_LIBRARY_PATH=./:${LD_LIBRARY_PATH} RUST_LOG=indy::=debug ,zmq=trace TEST_POOL_IP=10.0.0.2 python3.5 -m pytest
212212 '''
213213 }
214214 }
@@ -225,7 +225,7 @@ def linuxTesting(file, env_name, network_name, stashBuildResults) {
225225 }
226226 }
227227
228- if (env_name == ' Ubuntu' ) {
228+ if (env_name == ' Ubuntu' ) { // TODO: Delete condition IS-702
229229 sh " cp libnullpay/target/release/libnullpay.so cli"
230230 sh " cp libindy/target/release/libindy.so cli"
231231 dir(' cli' ) {
@@ -237,7 +237,7 @@ def linuxTesting(file, env_name, network_name, stashBuildResults) {
237237 sh ' LIBRARY_PATH=./ RUST_BACKTRACE=1 cargo test --release --features "nullpay_plugin" --no-run'
238238
239239 echo " ${ env_name} Indy Cli Test: Run tests"
240- sh ' LD_LIBRARY_PATH=./:${LD_LIBRARY_PATH} RUST_BACKTRACE=1 RUST_LOG=indy::,zmq=trace RUST_TEST_THREADS=1 TEST_POOL_IP=10.0.0.2 cargo test --release --features "nullpay_plugin"'
240+ sh ' LD_LIBRARY_PATH=./:${LD_LIBRARY_PATH} RUST_BACKTRACE=1 RUST_LOG=indy::=debug ,zmq=trace RUST_TEST_THREADS=1 TEST_POOL_IP=10.0.0.2 cargo test --release --features "nullpay_plugin"'
241241
242242 if (stashBuildResults) {
243243 stash includes : ' target/release/indy-cli' , name : ' IndyCliUbuntuBuildResult'
@@ -289,7 +289,7 @@ def windowsTesting() {
289289 echo " Windows Libindy Test: Run tests"
290290 withEnv([
291291 " RUST_TEST_THREADS=1" ,
292- " RUST_LOG=indy::,zmq=trace" ,
292+ " RUST_LOG=indy::=debug ,zmq=trace" ,
293293 " TEST_POOL_IP=$INDY_SDK_SERVER_IP "
294294 ]) {
295295 bat " cargo test --release"
@@ -301,7 +301,6 @@ def windowsTesting() {
301301 dir(' libnullpay' ) {
302302 echo " Windows Libnullpay Test: Build"
303303 withEnv([
304- " PROFILE=release" ,
305304 " RUST_BACKTRACE=1"
306305 ]) {
307306 bat " cargo build --release"
@@ -319,7 +318,6 @@ def windowsTesting() {
319318
320319 echo " Windows Indy Cli Test: Build"
321320 withEnv([
322- " PROFILE=release" ,
323321 " RUST_BACKTRACE=1"
324322 ]) {
325323 bat " cargo build --release"
@@ -330,7 +328,7 @@ def windowsTesting() {
330328 echo " Windows Indy Cli Test: Run tests"
331329 withEnv([
332330 " RUST_TEST_THREADS=1" ,
333- " RUST_LOG=indy::,zmq=trace" ,
331+ " RUST_LOG=indy::=debug ,zmq=trace" ,
334332 " TEST_POOL_IP=$INDY_SDK_SERVER_IP "
335333 ]) {
336334 bat " cargo test --release $featuresArgs "
0 commit comments