mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Test import / export for MySQL and PostgreSQL
This commit is contained in:
parent
792ff16127
commit
4f9898fba5
9
.github/workflows/mysql.yaml
vendored
9
.github/workflows/mysql.yaml
vendored
@ -48,4 +48,11 @@ jobs:
|
||||
pip3 install mysqlclient
|
||||
invoke install
|
||||
- name: Run Tests
|
||||
run: invoke test
|
||||
run: invoke test
|
||||
- name: Data Import Export
|
||||
run: |
|
||||
python3 ./InvenTree/manage.py flush --noinput
|
||||
invoke import-fixtures
|
||||
invoke export-records -f data.json
|
||||
python3 ./InvenTree/manage.py flush --noinput
|
||||
invoke import-records -f data.json
|
9
.github/workflows/postgresql.yaml
vendored
9
.github/workflows/postgresql.yaml
vendored
@ -44,4 +44,11 @@ jobs:
|
||||
pip3 install psycopg2
|
||||
invoke install
|
||||
- name: Run Tests
|
||||
run: invoke test
|
||||
run: invoke test
|
||||
- name: Data Import Export
|
||||
run: |
|
||||
python3 ./InvenTree/manage.py flush --noinput
|
||||
invoke import-fixtures
|
||||
invoke export-records -f data.json
|
||||
python3 ./InvenTree/manage.py flush --noinput
|
||||
invoke import-records -f data.json
|
Loading…
Reference in New Issue
Block a user