InvenTree/.travis.yml

23 lines
398 B
YAML
Raw Normal View History

dist: xenial
2017-03-23 21:34:41 +00:00
language: python
python:
- 3.6
2019-07-08 09:24:46 +00:00
- 3.7
addons:
apt-packages:
-sqlite3
2017-03-23 21:34:41 +00:00
before_install:
2019-09-01 12:31:21 +00:00
- make install
2019-04-27 22:42:17 +00:00
- make migrate
2019-09-10 04:32:29 +00:00
- cd InvenTree && python3 manage.py createsuper --username InvenTreeAdmin --email admin@inventree.com --noinput
2017-03-23 21:34:41 +00:00
script:
2019-05-01 14:53:38 +00:00
- git ls-files --exclude-standard --others
- make coverage
2019-04-13 22:41:13 +00:00
- make style
2019-04-24 05:32:50 +00:00
2019-04-24 05:36:45 +00:00
after_success:
2019-04-24 05:32:50 +00:00
- coveralls