Skip to content

Commit 14c81b8

Browse files
committedMar 20, 2019
renamed package
1 parent 3a69c98 commit 14c81b8

File tree

113 files changed

+510
-510
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+510
-510
lines changed
 

‎.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ test_models/model_*
5252
test_models/test_model_pretrained_embeddings
5353
test_projects/test_project_*
5454

55-
rasa_nlu/tmbo_test.py
55+
rasa/nlu/tmbo_test.py
5656
.mypy_cache/
5757
*.tar.gz
5858
docs/nlu/key

‎.travis.yml

+27-5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ env:
1212
# https://github.com/travis-ci/travis-ci/issues/7940
1313
global:
1414
- BOTO_CONFIG=/dev/null
15+
- COVERALLS_PARALLEL=true
1516

1617
install:
1718
- sudo apt-get install graphviz graphviz-dev
@@ -32,15 +33,36 @@ install:
3233
before_script:
3334
- mkdir $HOME/tmp
3435
- export TMPDIR=$HOME/tmp
35-
script:
36-
- py.test --codestyle -m codestyle
37-
- py.test tests --cov rasa -v --cov-append
38-
- py.test tests/nlu/base --cov rasa -v --cov-append
39-
- py.test tests/nlu/training --cov rasa -v --cov-append
4036
after_success:
4137
- coveralls
4238
jobs:
4339
include:
40+
- stage: test
41+
name: "Test Codestyle"
42+
python: 3.6
43+
script:
44+
- py.test --codestyle -m codestyle
45+
- stage: test
46+
name: "Test Core"
47+
python:
48+
- 3.5
49+
- 3.6
50+
script:
51+
- py.test tests/core --cov rasa -v --cov-append
52+
- stage: test
53+
name: "Test NLU"
54+
python:
55+
- 3.5
56+
- 3.6
57+
script:
58+
- py.test tests/nlu/base --cov rasa -v --cov-append
59+
- stage: test
60+
name: "Test NLU training"
61+
python:
62+
- 3.5
63+
- 3.6
64+
script:
65+
- py.test tests/nlu/training --cov rasa -v --cov-append
4466
- stage: integration
4567
name: "Test API specification"
4668
language: python

0 commit comments

Comments
 (0)