Test import / export for MySQL and PostgreSQL
This commit is contained in:
parent
792ff16127
commit
4f9898fba5
|
|
@ -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
|
||||
|
|
@ -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