genienlp/.travis.yml

12 lines
427 B
YAML
Raw Normal View History

language: python
python:
2020-01-29 02:37:28 +00:00
- 3.7
install:
- pip install flake8 # pytest # add another testing frameworks later
2019-03-02 01:11:03 +00:00
- pip install pipenv
- pipenv install --dev
2020-01-29 02:37:28 +00:00
script:
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
2020-01-29 02:37:28 +00:00
- "./tests/test.sh"
# pytest --capture=sys # add other tests here