From e76cb6776c71d14dedca9aff0cc30d6b5b81d139 Mon Sep 17 00:00:00 2001 From: David Hoese <david.hoese@ssec.wisc.edu> Date: Fri, 3 Jul 2020 16:19:44 -0500 Subject: [PATCH] Add some debug commands to CI --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 16e0c67..d3a223e 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+%)$/' -- GitLab