InvenTree/.github/workflows/postgresql.yaml

63 lines
1.5 KiB
YAML
Raw Normal View History

2021-03-31 06:18:04 +00:00
# PostgreSQL Unit Testing
name: PostgreSQL
2021-05-28 03:24:18 +00:00
on:
push:
branches-ignore:
- l10*
pull_request:
branches-ignore:
- l10*
2021-03-31 06:18:04 +00:00
jobs:
2021-05-06 12:38:13 +00:00
2021-03-31 06:18:04 +00:00
test:
runs-on: ubuntu-latest
env:
# Database backend configuration
INVENTREE_DB_ENGINE: django.db.backends.postgresql
2021-03-31 10:48:54 +00:00
INVENTREE_DB_NAME: inventree
INVENTREE_DB_USER: inventree
INVENTREE_DB_PASSWORD: password
INVENTREE_DB_HOST: '127.0.0.1'
INVENTREE_DB_PORT: 5432
2021-03-31 10:17:17 +00:00
INVENTREE_DEBUG: info
2021-03-31 11:31:50 +00:00
INVENTREE_MEDIA_ROOT: ./media
INVENTREE_STATIC_ROOT: ./static
2021-03-31 06:18:04 +00:00
services:
postgres:
image: postgres
2021-03-31 06:40:37 +00:00
env:
2021-03-31 06:45:57 +00:00
POSTGRES_USER: inventree
2021-03-31 06:40:37 +00:00
POSTGRES_PASSWORD: password
2021-03-31 06:28:30 +00:00
ports:
2021-03-31 06:45:57 +00:00
- 5432:5432
2021-03-31 06:18:04 +00:00
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install Dependencies
run: |
sudo apt-get install libpq-dev
pip3 install invoke
2021-03-31 06:45:57 +00:00
pip3 install psycopg2
2021-03-31 06:18:04 +00:00
invoke install
- name: Run Tests
run: invoke test
- name: Data Import Export
run: |
2021-04-25 01:07:43 +00:00
invoke migrate
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
invoke import-records -f data.json