-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
55 lines (48 loc) · 1.12 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
image:
name: rasa/rasa:3.6.20
entrypoint: [""]
services:
- name: "rasa/duckling"
alias: "duck"
variables:
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: ""
stages:
- style
- test
- deploy
check_style_with_black:
before_script:
- export PATH=/app/bin/:/app/:$PATH
- export PYTHONPATH=/app/:$PYTHONPATH
- pip install -t /app/ black==22.3.0
stage: style
script:
- black --check .
tags:
- k8s
test_domain:
before_script:
- export PATH=/app/bin/:/app/:$PATH
- export PYTHONPATH=/app/:$PYTHONPATH
- pip install -r ./docker/development-requirements.txt -t /app
stage: test
variables:
RASA_DUCKLING_HTTP_URL: "http://duck:8000"
script:
- cd bot && rasa train -vv --domain domains/bp.yml
- rasa test --fail-on-prediction-errors --nlu data/nlu.yml --cross-validation
tags:
- k8s
test_actions:
before_script:
- export PATH=/app/bin/:/app/:$PATH
- export PYTHONPATH=/app/:$PYTHONPATH
- pip install -r ./docker/development-requirements.txt -t /app
stage: test
script:
- cp .env.sample bot/.env
- cd bot
- python3 -m pytest
tags:
- k8s