diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 16e0c678f51baad00641230ae4d54cc60def91fc..d3a223ebb72e92d8c2b1ae6cb47a0b45ad0c22b1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -39,7 +39,7 @@ build_hello_world:
     - gcc -o hello src/hello_world.c
   artifacts:
     paths:
-      - hello
+      - /hello
 
 # Define stage that builds HTML and uploads the website
 tests:
@@ -48,6 +48,8 @@ tests:
   tags:
     - ssec_shared
   script:
+    - ls -l
+    - ./hello
     - pip install pytest pytest-cov
     - pytest --cov=. test.py
   coverage: '/TOTAL.*\s+(\d+%)$/'