From 2a2d971112d55457a6b562add69166e5cd75581c Mon Sep 17 00:00:00 2001
From: lb584 <lb584@cam.ac.uk>
Date: Tue, 31 Jan 2023 15:13:39 +0000
Subject: [PATCH] trying to get full integrations test working via runner

---
 .gitlab-ci.yml | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 301f151..a06eac3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -91,8 +91,8 @@ half_fat_tests:
     - python3 -m coverage run -m unittest test_deposition.py
     - python3 -m coverage run -m unittest test_env_suit.py
     - python3 -m coverage run -m unittest test_survey.py
-    - python -m coverage report
-    - python -m coverage html -d $CI_PROJECT_DIR/coverage
+    - python3 -m coverage report
+    - python3 -m coverage html -d $CI_PROJECT_DIR/coverage
     - ls
   artifacts:
     paths:
@@ -108,8 +108,8 @@ half_fat_epi_tests:
   script:
     - cd $CI_PROJECT_DIR/tests/integration/partial/
     - python3 -m coverage run -m unittest test_epi.py
-    - python -m coverage report
-    - python -m coverage html -d $CI_PROJECT_DIR/coverage
+    - python3 -m coverage report
+    - python3 -m coverage html -d $CI_PROJECT_DIR/coverage
     - ls
   artifacts:
     paths:
@@ -125,7 +125,8 @@ manual_job:
     - cd /storage/app/EWS_prod/code/coordinator/tests/integration/full/
     - echo $PYTHONPATH
     - echo "this is a manual job"
-    - full_test_deposition.py --config /storage/app/EWS_prod/regions/EastAfrica/resources/coordinator/configs/config_EastAfrica_fc_live.json \
+    - ls
+    - python3 full_test_deposition.py --config /storage/app/EWS_prod/regions/EastAfrica/resources/coordinator/configs/config_EastAfrica_fc_live.json \
       --outdir /storage/app/EWS_prod/regions/EastAfrica/workspace/ \
       --email_cred /storage/app/EWS_prod/envs/credentials/Cred_gmail.json
 
-- 
GitLab