2020-01-29 16:39:08 +00:00
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- "/^wip/"
|
2018-06-22 04:30:40 +00:00
|
|
|
language: python
|
2020-02-13 17:22:48 +00:00
|
|
|
python: 3.6
|
2018-06-22 04:30:40 +00:00
|
|
|
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:
|
2018-06-22 04:30:40 +00:00
|
|
|
- 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"
|
2020-01-29 16:39:08 +00:00
|
|
|
# pytest --capture=sys # add other tests here
|