Mentions légales du service

Skip to content
Snippets Groups Projects

Test intégartion continue

Closed PRATS Tommy requested to merge dev/testing_tommy_test_integration into main
.gitlab-ci.yml 0 → 100755
+ 21
0
default:
tags:
- ci.inria.fr
- small
image: $CI_REGISTRY/corse/easytracker/easytracker:1.2.0
before_script:
- virtualenv -p python3 .venv
- source .venv/bin/activate
- env
stages: # List of stages for jobs, and their order of execution
- test
unit-test-job: # This job runs in the test stage.
stage: test
script:
- echo "Running unit tests... j'ai commencé."
lint-test-job: # This job also runs in the test stage.
stage: test # It can run at the same time as unit-test-job (in parallel).
script:
- echo "Linting code... ca se lance."
Loading