2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 18:45:40 +00:00

Create a currency model

This commit is contained in:
Oliver Walters
2019-09-03 09:07:03 +10:00
parent aeb25e4c34
commit 7824b8561d
6 changed files with 133 additions and 5 deletions

View File

@ -9,6 +9,7 @@ clean:
# Perform database migrations (after schema changes are made)
migrate:
python3 InvenTree/manage.py makemigrations common
python3 InvenTree/manage.py makemigrations company
python3 InvenTree/manage.py makemigrations part
python3 InvenTree/manage.py makemigrations stock
@ -40,12 +41,12 @@ style:
# Run unit tests
test:
python3 InvenTree/manage.py check
python3 InvenTree/manage.py test build company part stock order
python3 InvenTree/manage.py test build common company order part stock
# Run code coverage
coverage:
python3 InvenTree/manage.py check
coverage run InvenTree/manage.py test build company part stock order InvenTree
coverage run InvenTree/manage.py test build common company order part stock InvenTree
coverage html
# Install packages required to generate code docs