Commit Graph

26 Commits

Author SHA1 Message Date
mehrad 4344c5e31b
Fix deployment (third attempt) 2022-07-25 18:51:00 -07:00
mehrad 1b790f6658
Remove test_main_almond_multilingual 2022-02-28 13:22:45 -08:00
mehrad 86044a8d9b
Add tests for bitod tasks 2022-02-25 13:33:27 -08:00
Giovanni Campagna b7baec6e58 Use Travis to build docker images
Restore automatic builds of docker images
2021-09-07 17:53:10 -07:00
kevintangzero 73a8a80305 Disable cuda tests in travis 2021-08-11 18:46:15 -07:00
kevintangzero 100dc2af61 Enable cuda tests in travis 2021-08-10 19:31:16 -07:00
kevintangzero 8cdb79540a Add sequence classification test in travis.yaml 2021-07-27 19:35:09 -07:00
Giovanni Campagna 36ff8c2036 travis: don't build dependabot branches 2021-06-28 15:28:56 -07:00
mehrad 7fd99df390
.travis.yml: remove code style check
we check for that using pre-commits now
2021-05-24 14:54:44 -07:00
mehrad 5cae0c7ecc Add tests for conll2003 and cross_ner tasks 2021-04-18 19:42:57 -07:00
Giovanni Campagna fe3f8b7824 travis: cache pip directory 2021-04-06 14:31:38 -07:00
mehrad 4aea3d75ff Remove pipenv 2021-03-08 13:44:52 -08:00
mehrad 7c1a6762ff Parallelize travis tests 2021-03-02 17:08:00 -08:00
mehrad 8aec3e4582 Add tests for bootleg + update relevant files 2021-02-01 13:00:52 -08:00
Giovanni Campagna 305b1a97ad travis: use python 3.8
Matching the pipfile, and hopefully fixing tests
2020-12-18 09:08:13 -08:00
Giovanni Campagna 1d9b6665e0 travis: add automatic upload to pypi when pushing tags
Automate releases
2020-09-01 09:13:38 -07:00
Giovanni Campagna 4de1b58e4c Switch back to python 3.6
We don't have 3.7 in the docker images
2020-02-13 09:22:48 -08:00
Giovanni Campagna ebdced5941 Simplify travis 2020-01-29 09:37:09 -08:00
Giovanni Campagna 0bd4c1cab0
travis: stop building wip/ branches
As per our convention everywhere
2020-01-29 08:39:08 -08:00
Giovanni Campagna 9a0031cd8b Clean up Travis 2020-01-28 18:37:28 -08:00
Giovanni Campagna d569037078 Make tests pass
Redo how predict works, fix reversing
2020-01-14 09:26:33 -08:00
mehrad b3bbad24c5 update tests 2019-03-04 15:08:56 -08:00
mehrad 3a1b969ad3 updates 2019-03-01 17:51:54 -08:00
mehrad 9c3145846a add tests 2019-03-01 17:51:54 -08:00
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