Fixed cwd for .travis.yml

This commit is contained in:
Oliver Walters 2019-09-10 14:40:29 +10:00
parent 73749911f8
commit f5d26a83f5
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ addons:
before_install:
- make install
- make migrate
- cd InvenTree && python3 manage.py createsuperuser --username InvenTreeAdmin --email admin@inventree.com --noinput
- cd InvenTree && python3 manage.py createsuperuser --username InvenTreeAdmin --email admin@inventree.com --noinput && cd ..
script:
- git ls-files --exclude-standard --others

View File

@ -47,7 +47,7 @@ test:
# Run code coverage
coverage:
python3 InvenTree/manage.py check
cd InvenTree && python3 manage.py check
coverage run InvenTree/manage.py test build common company order part stock InvenTree
coverage html