From 2158c3c68b8c9ddbec6720b5cb5bbdb5f27c9f64 Mon Sep 17 00:00:00 2001
From: David Hoese <david.hoese@ssec.wisc.edu>
Date: Fri, 3 Jul 2020 16:27:58 -0500
Subject: [PATCH] Remove debug messages

---
 .gitignore     | 2 +-
 .gitlab-ci.yml | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index 389a471..7f5c15e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
-#hello
+hello
 .coverage
 *.pyc
 .pytest_cache/
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2541b8a..6875d39 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -40,6 +40,8 @@ build_hello_world:
   artifacts:
     paths:
       - hello
+    # defaults to 30 days
+    expire_in: 6 hours
 
 # Define stage that builds HTML and uploads the website
 tests:
@@ -48,8 +50,6 @@ tests:
   tags:
     - ssec_shared
   script:
-    - ls -l
-    - ./hello
     - pip install pytest pytest-cov
     - pytest --cov=. test.py
   coverage: '/TOTAL.*\s+(\d+%)$/'
-- 
GitLab