InvenTree/.travis.yml

28 lines
589 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:
2020-02-02 00:52:22 +00:00
- sqlite3
2017-03-23 21:34:41 +00:00
before_install:
- sudo apt-get update
- sudo apt-get install gettext
2020-08-21 11:27:39 +00:00
- pip3 install invoke
- invoke install
- invoke migrate
2019-09-10 04:40:29 +00:00
- cd InvenTree && python3 manage.py createsuperuser --username InvenTreeAdmin --email admin@inventree.com --noinput && cd ..
2017-03-23 21:34:41 +00:00
script:
2019-09-15 13:43:39 +00:00
- cd InvenTree && python3 manage.py makemigrations && cd ..
2019-09-15 13:42:36 +00:00
- python3 ci/check_migration_files.py
2020-08-21 11:27:39 +00:00
- invoke coverage
- invoke translate
- invoke 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