InvenTree/.github/workflows/qc_checks.yaml

288 lines
7.6 KiB
YAML
Raw Normal View History

2021-12-03 00:18:31 +00:00
# Checks for each PR / push
2021-09-12 11:36:14 +00:00
2021-12-03 00:18:31 +00:00
name: QC checks
2021-09-12 11:36:14 +00:00
on:
2021-12-02 11:30:44 +00:00
push:
branches-ignore:
- l10*
2021-09-12 11:36:14 +00:00
pull_request:
branches-ignore:
- l10*
2021-12-02 11:35:08 +00:00
env:
2022-05-15 13:52:55 +00:00
python_version: 3.9
2021-12-02 11:47:04 +00:00
node_version: 16
2022-05-27 19:16:31 +00:00
# The OS version must be set per job
2021-12-02 23:34:35 +00:00
2021-12-02 12:17:45 +00:00
server_start_sleep: 60
2021-12-02 11:47:04 +00:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
INVENTREE_DB_ENGINE: sqlite3
2021-12-02 11:47:04 +00:00
INVENTREE_DB_NAME: inventree
INVENTREE_MEDIA_ROOT: ../test_inventree_media
INVENTREE_STATIC_ROOT: ../test_inventree_static
INVENTREE_ADMIN_USER: testuser
INVENTREE_ADMIN_PASSWORD: testpassword
INVENTREE_ADMIN_EMAIL: test@test.com
2021-12-02 11:30:44 +00:00
2021-09-12 11:36:14 +00:00
jobs:
2021-12-02 11:30:44 +00:00
pep_style:
2022-05-27 18:36:41 +00:00
name: Python Style (PEP8)
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2021-12-02 11:30:44 +00:00
steps:
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 20:33:59 +00:00
uses: matmair/inventree/.github/actions/setup@ci-updates
2021-12-02 11:30:44 +00:00
with:
2021-12-02 11:35:08 +00:00
python-version: ${{ env.python_version }}
2022-05-27 20:08:55 +00:00
install: true
2021-12-02 11:30:44 +00:00
- name: flake8
run: |
2022-05-27 19:57:41 +00:00
flake8 InvenTree --extend-ignore=D
2021-12-02 11:47:04 +00:00
javascript:
2022-05-27 18:36:41 +00:00
name: JS Template Files
2021-12-02 11:47:04 +00:00
needs: pep_style
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2021-12-02 11:47:04 +00:00
steps:
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 20:33:59 +00:00
uses: matmair/inventree/.github/actions/setup@ci-updates
2021-12-02 11:47:04 +00:00
with:
python-version: ${{ env.python_version }}
2022-05-27 20:08:55 +00:00
update: true
npm: true
2021-12-02 11:47:04 +00:00
- name: Check Templated Files
run: |
cd ci
2022-05-27 18:33:02 +00:00
python3 check_js_templates.py
2021-12-02 11:47:04 +00:00
- name: Lint Javascript Files
run: |
invoke render-js-files
npx eslint js_tmp/*.js
2021-12-02 11:49:37 +00:00
html:
2022-05-27 18:36:41 +00:00
name: HTML Template Files
2021-12-02 12:01:55 +00:00
needs: pep_style
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2021-12-02 11:49:37 +00:00
steps:
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 20:33:59 +00:00
uses: matmair/inventree/.github/actions/setup@ci-updates
2021-12-02 11:49:37 +00:00
with:
python-version: ${{ env.python_version }}
2022-05-27 20:08:55 +00:00
update: true
npm: true
2021-12-02 11:49:37 +00:00
- name: Check HTML Files
run: |
2022-05-27 18:05:40 +00:00
npx markuplint **/templates/*.html
2021-12-02 12:14:38 +00:00
2022-05-27 16:52:34 +00:00
pre-commit:
2022-05-27 18:36:41 +00:00
name: pre-commit
2022-05-27 16:52:34 +00:00
needs: pep_style
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2022-05-27 16:52:34 +00:00
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.python_version }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.python_version }}
cache: 'pip'
2022-05-27 16:52:34 +00:00
- uses: pre-commit/action@v2.0.3
2021-12-02 12:14:38 +00:00
python:
2022-05-27 18:36:41 +00:00
name: Test inventree-python
2022-05-27 16:52:34 +00:00
needs: pre-commit
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2021-12-02 12:14:38 +00:00
2021-12-02 12:17:45 +00:00
env:
wrapper_name: inventree-python
INVENTREE_DB_ENGINE: django.db.backends.sqlite3
INVENTREE_DB_NAME: ../inventree_unit_test_db.sqlite3
INVENTREE_PYTHON_TEST_SERVER: http://localhost:12345
INVENTREE_PYTHON_TEST_USERNAME: testuser
INVENTREE_PYTHON_TEST_PASSWORD: testpassword
2021-12-02 12:17:45 +00:00
2021-12-02 12:14:38 +00:00
steps:
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 20:33:59 +00:00
uses: matmair/inventree/.github/actions/setup@ci-updates
2022-05-27 18:12:31 +00:00
with:
python-version: ${{ env.python_version }}
2022-05-27 20:08:55 +00:00
update: true
2021-12-02 12:14:38 +00:00
- name: Download Python Code
run: |
2021-12-02 12:17:45 +00:00
git clone --depth 1 https://github.com/inventree/${{ env.wrapper_name }} ./${{ env.wrapper_name }}
2021-12-02 12:14:38 +00:00
- name: Start Server
run: |
invoke delete-data -f
invoke import-fixtures
invoke server -a 127.0.0.1:12345 &
invoke wait
2021-12-02 12:14:38 +00:00
- name: Run Tests
run: |
2021-12-02 12:17:45 +00:00
cd ${{ env.wrapper_name }}
invoke check-server
2022-05-12 01:00:43 +00:00
coverage run -m unittest discover -s test/
2021-12-02 12:25:01 +00:00
2022-05-27 19:29:15 +00:00
docstyle:
name: Python Style (Docstrings)
runs-on: ubuntu-20.04
2022-05-27 20:06:36 +00:00
needs: pre-commit
2022-05-27 20:08:55 +00:00
continue-on-error: true
2022-05-27 20:06:36 +00:00
2022-05-27 19:29:15 +00:00
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python ${{ env.python_version }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.python_version }}
cache: 'pip'
- name: Install Dependencies
run: |
pip3 install invoke
invoke install
- name: flake8
run: |
flake8 InvenTree
2021-12-02 12:25:01 +00:00
coverage:
2022-05-27 18:36:41 +00:00
name: Tests + Coverage [SQLite]
2022-05-27 18:05:40 +00:00
needs: ['javascript', 'html', 'pre-commit']
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2021-12-02 12:25:01 +00:00
env:
2021-12-03 00:05:14 +00:00
INVENTREE_DB_NAME: ./inventree.sqlite
2021-12-02 12:29:01 +00:00
INVENTREE_DB_ENGINE: sqlite3
INVENTREE_PLUGINS_ENABLED: true
2021-12-02 12:25:01 +00:00
steps:
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 20:33:59 +00:00
uses: matmair/inventree/.github/actions/setup@ci-updates
2021-12-02 12:25:01 +00:00
with:
2021-12-02 12:25:50 +00:00
python-version: ${{ env.python_version }}
2022-05-27 20:08:55 +00:00
update: true
2021-12-02 12:25:01 +00:00
- name: Coverage Tests
run: |
invoke coverage
- name: Data Import Export
run: |
invoke migrate
invoke import-fixtures
invoke export-records -f data.json
2021-12-03 00:27:33 +00:00
rm inventree.sqlite
2021-12-02 12:25:01 +00:00
invoke migrate
invoke import-records -f data.json
invoke import-records -f data.json
2022-05-20 11:20:55 +00:00
- name: Test Translations
2021-12-02 12:25:01 +00:00
run: invoke translate
- name: Check Migration Files
run: python3 ci/check_migration_files.py
2021-12-02 23:28:53 +00:00
- name: Upload Coverage Report
run: coveralls
2021-12-02 12:34:01 +00:00
postgres:
2022-05-27 18:36:41 +00:00
name: Tests [PostgreSQL]
2022-05-27 18:05:40 +00:00
needs: ['javascript', 'html', 'pre-commit']
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2022-05-11 04:16:39 +00:00
if: github.event_name == 'push'
2021-12-02 12:34:01 +00:00
env:
INVENTREE_DB_ENGINE: django.db.backends.postgresql
2021-12-03 00:03:32 +00:00
INVENTREE_DB_USER: inventree
INVENTREE_DB_PASSWORD: password
2021-12-02 23:34:35 +00:00
INVENTREE_DB_HOST: '127.0.0.1'
INVENTREE_DB_PORT: 5432
INVENTREE_DEBUG: info
2021-12-02 12:34:01 +00:00
INVENTREE_CACHE_HOST: localhost
INVENTREE_PLUGINS_ENABLED: true
2021-12-02 12:34:01 +00:00
services:
postgres:
image: postgres
2021-12-02 22:42:21 +00:00
env:
2021-12-03 00:03:32 +00:00
POSTGRES_USER: inventree
POSTGRES_PASSWORD: password
2021-12-02 12:34:01 +00:00
ports:
2021-12-02 23:34:35 +00:00
- 5432:5432
2021-12-02 12:34:01 +00:00
redis:
image: redis
ports:
- 6379:6379
steps:
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 20:33:59 +00:00
uses: matmair/inventree/.github/actions/setup@ci-updates
2021-12-02 12:34:01 +00:00
with:
2021-12-02 12:34:55 +00:00
python-version: ${{ env.python_version }}
2022-05-27 20:08:55 +00:00
update: true
apt-dependency: libpq-dev
pip-dependency: psycopg2 django-redis>=5.0.0
2022-05-27 18:31:59 +00:00
2021-12-02 12:34:01 +00:00
- name: Run Tests
run: invoke test
- name: Data Import Export
run: |
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
2021-12-02 12:37:26 +00:00
mysql:
2022-05-27 18:36:41 +00:00
name: Tests [MySQL]
2022-05-27 18:05:40 +00:00
needs: ['javascript', 'html', 'pre-commit']
2022-05-27 19:16:31 +00:00
runs-on: ubuntu-20.04
2022-05-11 04:16:39 +00:00
if: github.event_name == 'push'
2021-12-02 12:37:26 +00:00
env:
# Database backend configuration
INVENTREE_DB_ENGINE: django.db.backends.mysql
2021-12-02 23:34:35 +00:00
INVENTREE_DB_USER: root
2021-12-03 00:03:32 +00:00
INVENTREE_DB_PASSWORD: password
2021-12-02 23:34:35 +00:00
INVENTREE_DB_HOST: '127.0.0.1'
INVENTREE_DB_PORT: 3306
INVENTREE_DEBUG: info
INVENTREE_PLUGINS_ENABLED: true
2021-12-02 12:37:26 +00:00
services:
mysql:
image: mysql:latest
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
2021-12-02 12:39:12 +00:00
MYSQL_DATABASE: ${{ env.INVENTREE_DB_NAME }}
2021-12-03 00:03:32 +00:00
MYSQL_USER: inventree
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: password
2021-12-02 12:37:26 +00:00
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
ports:
2021-12-02 23:34:35 +00:00
- 3306:3306
2021-12-02 12:37:26 +00:00
steps:
2022-05-27 20:08:55 +00:00
- name: Enviroment Setup
2022-05-27 20:33:59 +00:00
uses: matmair/inventree/.github/actions/setup@ci-updates
2021-12-02 12:37:26 +00:00
with:
2021-12-02 12:37:53 +00:00
python-version: ${{ env.python_version }}
2022-05-27 20:08:55 +00:00
update: true
apt-dependency: libmysqlclient-dev
pip-dependency: mysqlclient
2022-05-27 18:31:59 +00:00
2021-12-02 12:37:26 +00:00
- name: Run Tests
run: invoke test
- name: Data Import Export
run: |
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