Commit Graph

7 Commits

Author SHA1 Message Date
Bryan McCann 6662a33dae
Python 2.7 not currently supported 2018-06-22 10:51:09 -07:00
cclauss ef9282d8e0 Use automated testing to find Python syntax errors
* https://travis-ci.org/salesforce
* https://travis-ci.org/salesforce/decaNLP

http://flake8.pycqa.org will flag the Travis CI build if there are Python syntax errors or undefined names.

E901,E999,F821,F822,F823 are the "showstopper" flake8 issues that can halt the runtime with a SyntaxError, NameError, etc. Most other flake8 issues are merely "style violations" -- useful for readability but they do not effect runtime safety. This PR therefore recommends a flake8 run of these tests on the entire codebase.

F821: undefined name name
F822: undefined name name in __all__
F823: local variable name referenced before assignment
E901: SyntaxError or IndentationError
E999: SyntaxError -- failed to compile a file into an Abstract Syntax Tree
2018-06-22 10:44:22 -07:00
Bryan Marcus McCann ca1718b33c MQAN default model 2018-06-22 17:22:10 +00:00
Bryan Marcus McCann a16f938cd7 rm revtok based gleu 2018-06-22 02:23:02 +00:00
Bryan McCann 554fe5ea9c
Create schema.txt 2018-06-21 14:30:58 -07:00
Bryan McCann ab7714a8da
Update README.md 2018-06-20 20:03:03 -07:00
Bryan Marcus McCann 8997039aec Initial commit 2018-06-20 12:36:21 +00:00