diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4fcfec382b711e8a7f52db3646521a31512311a0..0b397596fb475a8d5bc9f4afbdfdcff9c945006f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -20,7 +20,7 @@ linux:
   image: 'rust:1.32.0'
   script:
     - cargo build
-    - make tests
+    - FULL=1 make tests
 
 linux:stable:
   script:
diff --git a/tests/run_examples.sh b/tests/run_examples.sh
index 4908f7b7abee09aeffc57b3b949603161ebe9a33..b4bbf93a721f6c4d9a4f89a1514ee37636061194 100755
--- a/tests/run_examples.sh
+++ b/tests/run_examples.sh
@@ -59,6 +59,8 @@ cargo +$TOOLCHAIN build
 test_generic
 test_params
 
+set +u
+
 if [ -n "$FULL" ]; then
     # Build debug binary for testing structopt argument parsing
     cargo +$TOOLCHAIN build --features=advanced_arg_parsing