15 lines
351 B
YAML
15 lines
351 B
YAML
build-job:
|
|
stage: build
|
|
script:
|
|
- echo "Hello, $GITLAB_USER_LOGIN!"
|
|
|
|
run_tests:
|
|
stage: test
|
|
before_script:
|
|
- echo "$CI_BUILDS_DIR"
|
|
- source /home/gitlab-runner/miniconda3/bin/activate cristallina
|
|
- echo `pwd`
|
|
- pip install -e .
|
|
script:
|
|
- echo "Hello, $GITLAB_USER_LOGIN!"
|
|
- pytest -v |