mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
18 lines
469 B
YAML
18 lines
469 B
YAML
name: 'Migration test'
|
|
description: 'Run migration test sequenze'
|
|
author: 'inventree'
|
|
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Data Import Export
|
|
shell: bash
|
|
run: |
|
|
invoke migrate
|
|
invoke import-fixtures
|
|
invoke export-records -f data.json
|
|
python3 ./InvenTree/manage.py flush --noinput
|
|
invoke migrate
|
|
invoke import-records -f data.json
|
|
invoke import-records -f data.json
|