diff --git a/.travis.yml b/.travis.yml index 37ad7c425c..fac160feb4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,6 +15,7 @@ before_install: script: - make coverage - make style + - git ls-files --exclude-standard --others after_success: - coveralls \ No newline at end of file diff --git a/InvenTree/stock/models.py b/InvenTree/stock/models.py index cb0ad8aea4..1be1385f5f 100644 --- a/InvenTree/stock/models.py +++ b/InvenTree/stock/models.py @@ -127,7 +127,7 @@ class StockItem(models.Model): ] # UUID for generating QR codes - uuid = models.UUIDField(default=uuid.uuid4, blank=True, editable=False) + uuid = models.UUIDField(default=uuid.uuid4, blank=True, editable=False, help_text='Unique ID for the StockItem') # The 'master' copy of the part of which this stock item is an instance part = models.ForeignKey('part.Part', on_delete=models.CASCADE, related_name='locations')