2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-20 13:56:30 +00:00

Merge branch 'master' of https://github.com/inventree/InvenTree into cov-use-xml

This commit is contained in:
Matthias Mair
2024-04-04 01:49:38 +02:00
17 changed files with 317 additions and 13 deletions

@ -247,6 +247,12 @@ def install(c, uv=False):
# Run plugins install
plugins(c, uv=uv)
# Compile license information
lic_path = managePyDir().joinpath('InvenTree', 'licenses.txt')
c.run(
f'pip-licenses --format=json --with-license-file --no-license-path > {lic_path}'
)
@task(help={'tests': 'Set up test dataset at the end'})
def setup_dev(c, tests=False):