From 5104eb157a40f72330e6b780cfe7f3f536a702fe Mon Sep 17 00:00:00 2001 From: librelois <elois@ifee.fr> Date: Mon, 22 Apr 2019 23:53:32 +0200 Subject: [PATCH] [ci] run ignored tests --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 684dc7b2..4afb8c4c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -84,7 +84,7 @@ tests:linux64:stable: script: - cd bin/durs-server - RUSTFLAGS="-D warnings" cargo build --features=ssl - - cargo test --all + - cargo test --all -- --include-ignored tests:arm-v7-:stable: <<: *rust_stable_armv7 @@ -92,7 +92,7 @@ tests:arm-v7-:stable: script: - cd bin/durs-server - RUSTFLAGS="-D warnings" cargo build --target=armv7-unknown-linux-gnueabihf --features=ssl - - cargo test --all --target=armv7-unknown-linux-gnueabihf + - cargo test --all --target=armv7-unknown-linux-gnueabihf -- --include-ignored allow_failure: true when: manual except: @@ -104,7 +104,7 @@ tests:arm-v7:stable: script: - cd bin/durs-server - RUSTFLAGS="-D warnings" cargo build --target=armv7-unknown-linux-gnueabihf --features=ssl - - cargo test --all --target=armv7-unknown-linux-gnueabihf + - cargo test --all --target=armv7-unknown-linux-gnueabihf -- --include-ignored only: - tags @@ -135,7 +135,7 @@ tests:linux64:beta: script: - cd bin/durs-server - RUSTFLAGS="-D warnings" cargo build --features=ssl - - cargo test --all + - cargo test --all -- --include-ignored when: manual allow_failure: true @@ -145,7 +145,7 @@ tests:linux64:nightly: script: - cd bin/durs-server - RUSTFLAGS="-D warnings" cargo build --features=ssl - - cargo test --all + - cargo test --all -- --include-ignored when: manual allow_failure: true -- GitLab