Loading .gitignore 0 → 100644 +2 −0 Original line number Diff line number Diff line # exclude from version control the file generated test_file.txt .gitlab-ci.yml +18 −0 Original line number Diff line number Diff line Loading @@ -9,3 +9,21 @@ build_job: - echo "Building the application..." - python -m py_compile program.py - echo "Building complete." test_job_1: stage: test # section where to run the job tags: - git-run-ia2 # who is running the job script: - echo "Running test group 1 ..." - python test_program.py - echo "Testing complete." test_job_2: stage: test # section where to run the job tags: - git-run-ia2 # who is running the job script: - echo "Running more tests in group 2..." - sleep 5 - echo "Testing complete." Loading
.gitignore 0 → 100644 +2 −0 Original line number Diff line number Diff line # exclude from version control the file generated test_file.txt
.gitlab-ci.yml +18 −0 Original line number Diff line number Diff line Loading @@ -9,3 +9,21 @@ build_job: - echo "Building the application..." - python -m py_compile program.py - echo "Building complete." test_job_1: stage: test # section where to run the job tags: - git-run-ia2 # who is running the job script: - echo "Running test group 1 ..." - python test_program.py - echo "Testing complete." test_job_2: stage: test # section where to run the job tags: - git-run-ia2 # who is running the job script: - echo "Running more tests in group 2..." - sleep 5 - echo "Testing complete."