From a19a808e40502ca0070795a6baeaa9a25144db2d Mon Sep 17 00:00:00 2001 From: Lukas Winkler Date: Sun, 30 Jan 2022 20:09:45 +0100 Subject: [PATCH] run tests separatly --- .gitlab-ci.yml | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 48a903a..858678e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -48,18 +48,47 @@ simulation_run: - "test_simulationrun*" expire_in: 60 days -visualisation: +analyze: stage: visualisation needs: - simulation_run script: - mkdir plots - poetry run python analyze.py test_simulationrun + +collisionhistory: + stage: visualisation + needs: + - simulation_run + script: + - mkdir plots - poetry run python collisionhistory.py test_simulationrun + +collisionstats: + stage: visualisation + needs: + - simulation_run + script: + - mkdir plots - poetry run python collisionstats.py test_simulationrun + +particle_numbers: + stage: visualisation + needs: + - simulation_run + script: + - mkdir plots - poetry run python particle_numbers.py test_simulationrun + +final_results: + stage: visualisation + needs: + - simulation_run + script: + - mkdir plots - poetry run python final_results.py test_simulationrun + graph: stage: visualisation needs: