From 2f25ae7df6cff71a5385d7aaa15f5d99aee4af4e Mon Sep 17 00:00:00 2001
From: lb584 <lb584@cam.ac.uk>
Date: Fri, 27 Jan 2023 14:59:47 +0000
Subject: [PATCH] experimenting with manual jobs

---
 .gitlab-ci.yml | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5c474eb..fbf390c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -51,8 +51,8 @@ before_script:
   - echo $PYTHONPATH
   - ls ../
 
-test:
-  when: manual
+half_fat_tests:
+  when: always
   script:
     - cd $CI_PROJECT_DIR/tests/unit/coordinator/
     - python3 -m coverage run -m unittest *
@@ -72,6 +72,19 @@ test:
       - $CI_PROJECT_DIR/coverage
     expire_in: 30 days
 
+half_fat_epi_tests:
+  when: manual
+  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
+    - ls
+  artifacts:
+    paths:
+      - $CI_PROJECT_DIR/coverage
+    expire_in: 30 days
+
 manual_job:
   when: manual
   script:
-- 
GitLab