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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 12 deletions

1
.gitignore vendored
View File

@ -48,6 +48,7 @@ docs/_build
inventree_media
inventree_static
static_i18n
inventree-data
# Local config file
config.yaml

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

View File

@ -511,6 +511,19 @@ def test(c, database=None):
manage(c, 'test', pty=True)
@task(pre=[update])
def setup_test(c):
"""Setup a testing enviroment."""
# Remove old data directory
c.run('rm inventree-data -r')
# Get test data
c.run('git clone https://github.com/inventree/demo-dataset inventree-data')
# Load data
import_records(c, filename='inventree-data/inventree_data.json', clear=True)
@task
def coverage(c):
"""Run code-coverage of the InvenTree codebase, using the 'coverage' code-analysis tools.