mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
d0bc35f670
Following example at https://stackoverflow.com/questions/55521832/update-sqlite-in-travis-ci
19 lines
201 B
YAML
19 lines
201 B
YAML
dist: xenial
|
|
|
|
language: python
|
|
python:
|
|
- 3.5
|
|
- 3.6
|
|
|
|
addons:
|
|
apt-packages:
|
|
-sqlite3
|
|
|
|
before_install:
|
|
- make setup
|
|
- make setup_ci
|
|
|
|
script:
|
|
# - make style
|
|
- make test
|