2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-14 19:15:41 +00:00

Add test command (#3372)

* integrate test loading as task - use with gitpod

* ignore test data with git
This commit is contained in:
Matthias Mair
2022-07-21 03:41:42 +02:00
committed by GitHub
parent 09987ad79b
commit 864d69d968
3 changed files with 18 additions and 12 deletions

View File

@ -10,29 +10,21 @@ tasks:
python3 -m venv venv
source venv/bin/activate
pip install invoke
inv install
mkdir dev
inv update
gp sync-done setup_server
inv test-setup
gp sync-done start_server
- name: Start server
init: gp sync-await setup_server
init: gp sync-await start_server
command: |
gp sync-await setup_server
gp sync-await start_server
export INVENTREE_DB_ENGINE='sqlite3'
export INVENTREE_DB_NAME='/workspace/InvenTree/dev/database.sqlite3'
export INVENTREE_MEDIA_ROOT='/workspace/InvenTree/inventree-data/media'
export INVENTREE_STATIC_ROOT='/workspace/InvenTree/dev/static'
source venv/bin/activate
rm /workspace/InvenTree/inventree-data -r
git clone https://github.com/inventree/demo-dataset /workspace/InvenTree/inventree-data
invoke delete-data -f
invoke import-records -f /workspace/InvenTree/inventree-data/inventree_data.json
inv server
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
ports:
- port: 8000
onOpen: open-preview