File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,11 @@ python:
11
11
env :
12
12
# needed to fix issues with boto during testing:
13
13
# https://github.com/travis-ci/travis-ci/issues/7940
14
- global : BOTO_CONFIG=/dev/null
14
+ global :
15
+ - BOTO_CONFIG=/dev/null
16
+ # secret for FOSSA
17
+ - secure : " g0c6z+CKVPiuGE3G3OGjzcKZJsdsA/j+zsTQ/xr1ie9gKNpKRA0KQAvsU/mow4NeMmt5YKnwKxFqWy0b3Oufm5WLTAWIVepT5FHA7YMVCMcpPIMsbtqe64FqJxhgL+sBJZku5i94PzCruXwbjk3Q5Uad95ZsIJLQLEkzIla6Fdcu5hdkfYVIGRGe0W2YxNVx+3fZimnOOvJmXD/nnZEBesq5fR09uA4v2PsBGuHOTkwuG60rU5bBPZ2PNiEZXt552kJ5yfdSszNd6uzgQNp10L0qXzt1fXeyf9uGAleDS1HrbcVcdWX0jwCwZF/FD40wUcyKGqOWWDs81mehsjhXymKBhy62QinCSFBmcJb/uRJpMWvvzOLaH94TgxFJCxogNKdqNN/jU3V8CuJ2ELp+RCiniO1u9Dd134j6dYWSWYO+R4WXYoIQYVlGZZqIZz+5b5eKsY+r6I1zPBfD+MowJx2HiLpSdgXh3tlhblOZwPKIuUQ++MeBY4JttJA4Sx5K+YIUzDvcx+7jyuYIjrV4D23n6i4dZZHpAqqtlf1iSbnEzO/rnAxZxy1UuEVmXNJSDOoKEzA7Mdd/Nh+M8wcJAb/KDS/TEvT27+TLRlrgOjgjU2q+4yXNomivi3rZJ1+EFUTgs7lgOGCM/LBpJgnyyiSYZoep0YDZHtA3DCnHKQI="
18
+
15
19
install :
16
20
- pip install git+https://github.com/tmbo/MITIE.git
17
21
- pip install -r alt_requirements/requirements_dev.txt
@@ -35,6 +39,15 @@ after_success:
35
39
- coveralls
36
40
jobs :
37
41
include :
42
+ - stage : test
43
+ name : Check Dependency Licenses
44
+ before_script :
45
+ - " curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash"
46
+ script :
47
+ - pip freeze > requirements.txt
48
+ - fossa init
49
+ - fossa analyze
50
+ - fossa test
38
51
- stage : docs
39
52
if : fork = false AND branch = "master" # forked repository will skip building docs, only master & PRs to it
40
53
install :
Original file line number Diff line number Diff line change 4
4
[ ![ Coverage Status] ( https://coveralls.io/repos/github/RasaHQ/rasa_nlu/badge.svg?branch=master )] ( https://coveralls.io/github/RasaHQ/rasa_nlu?branch=master )
5
5
[ ![ PyPI version] ( https://badge.fury.io/py/rasa_nlu.svg )] ( https://badge.fury.io/py/rasa_nlu )
6
6
[ ![ Documentation Status] ( https://img.shields.io/badge/docs-stable-brightgreen.svg )] ( https://nlu.rasa.com/ )
7
+ [ ![ FOSSA Status] ( https://app.fossa.io/api/projects/git%2Bgithub.com%2FRasaHQ%2Frasa_nlu.svg?type=shield )] ( https://app.fossa.io/projects/git%2Bgithub.com%2FRasaHQ%2Frasa_nlu?ref=badge_shield )
7
8
8
9
Rasa NLU (Natural Language Understanding) is a tool for understanding what is being said in short pieces of text.
9
10
For example, taking a short message like:
You can’t perform that action at this time.
0 commit comments