Skip to content

Commit df6ce0c

Browse files
authored
Merge pull request RasaHQ#1634 from RasaHQ/added-fossa-check
Added fossa check
2 parents 5223ecc + 85b8d4a commit df6ce0c

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.travis.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ python:
1111
env:
1212
# needed to fix issues with boto during testing:
1313
# 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+
1519
install:
1620
- pip install git+https://github.com/tmbo/MITIE.git
1721
- pip install -r alt_requirements/requirements_dev.txt
@@ -35,6 +39,15 @@ after_success:
3539
- coveralls
3640
jobs:
3741
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
3851
- stage: docs
3952
if: fork = false AND branch = "master" # forked repository will skip building docs, only master & PRs to it
4053
install:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
[![Coverage Status](https://coveralls.io/repos/github/RasaHQ/rasa_nlu/badge.svg?branch=master)](https://coveralls.io/github/RasaHQ/rasa_nlu?branch=master)
55
[![PyPI version](https://badge.fury.io/py/rasa_nlu.svg)](https://badge.fury.io/py/rasa_nlu)
66
[![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)
78

89
Rasa NLU (Natural Language Understanding) is a tool for understanding what is being said in short pieces of text.
910
For example, taking a short message like:

0 commit comments

Comments
 (0)