2021-12-03 00:18:31 +00:00
|
|
|
# Checks for each PR / push
|
2021-09-12 11:36:14 +00:00
|
|
|
|
2023-05-01 21:58:57 +00:00
|
|
|
name: QC
|
2021-09-12 11:36:14 +00:00
|
|
|
|
|
|
|
on:
|
2021-12-02 11:30:44 +00:00
|
|
|
push:
|
2023-05-01 21:58:57 +00:00
|
|
|
branches-ignore: ['l10*']
|
2021-09-12 11:36:14 +00:00
|
|
|
pull_request:
|
2023-05-01 21:58:57 +00:00
|
|
|
branches-ignore: ['l10*']
|
2021-09-12 11:36:14 +00:00
|
|
|
|
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-28 00:38:12 +00:00
|
|
|
# The OS version must be set per job
|
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 }}
|
2021-12-02 13:05:55 +00:00
|
|
|
INVENTREE_DB_ENGINE: sqlite3
|
2021-12-02 11:47:04 +00:00
|
|
|
INVENTREE_DB_NAME: inventree
|
2022-05-28 00:38:12 +00:00
|
|
|
INVENTREE_MEDIA_ROOT: ../test_inventree_media
|
|
|
|
INVENTREE_STATIC_ROOT: ../test_inventree_static
|
2022-10-16 13:09:31 +00:00
|
|
|
INVENTREE_BACKUP_DIR: ../test_inventree_backup
|
2021-12-02 11:30:44 +00:00
|
|
|
|
2021-09-12 11:36:14 +00:00
|
|
|
jobs:
|
2023-05-01 21:58:57 +00:00
|
|
|
paths-filter:
|
|
|
|
name: Filter
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
outputs:
|
|
|
|
server: ${{ steps.filter.outputs.server }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0
|
|
|
|
- uses: dorny/paths-filter@v2
|
|
|
|
id: filter
|
|
|
|
with:
|
|
|
|
filters: |
|
|
|
|
server:
|
|
|
|
- 'InvenTree/**'
|
2023-05-14 22:27:26 +00:00
|
|
|
- 'requirements.txt'
|
|
|
|
- 'requirements-dev.txt'
|
2023-05-01 21:58:57 +00:00
|
|
|
|
2021-12-02 11:30:44 +00:00
|
|
|
pep_style:
|
2022-05-28 00:38:12 +00:00
|
|
|
name: Style [Python]
|
|
|
|
runs-on: ubuntu-20.04
|
2021-12-02 11:30:44 +00:00
|
|
|
|
2023-05-01 21:58:57 +00:00
|
|
|
needs: paths-filter
|
|
|
|
if: needs.paths-filter.outputs.server == 'true'
|
|
|
|
|
2021-12-02 11:30:44 +00:00
|
|
|
steps:
|
2022-10-17 02:46:12 +00:00
|
|
|
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0
|
2023-06-03 14:04:52 +00:00
|
|
|
- name: Environment Setup
|
2022-05-28 00:38:12 +00:00
|
|
|
uses: ./.github/actions/setup
|
2021-12-02 11:30:44 +00:00
|
|
|
with:
|
2022-06-28 12:12:00 +00:00
|
|
|
dev-install: true
|
2022-05-28 00:38:12 +00:00
|
|
|
- name: Run flake8
|
|
|
|
run: flake8 InvenTree --extend-ignore=D
|
2021-12-02 11:47:04 +00:00
|
|
|
|
|
|
|
javascript:
|
2022-05-28 00:38:12 +00:00
|
|
|
name: Style [JS]
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
2021-12-02 11:47:04 +00:00
|
|
|
needs: pep_style
|
|
|
|
|
|
|
|
steps:
|
2022-10-17 02:46:12 +00:00
|
|
|
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0
|
2023-06-03 14:04:52 +00:00
|
|
|
- name: Environment Setup
|
2022-05-28 00:38:12 +00:00
|
|
|
uses: ./.github/actions/setup
|
2021-12-02 11:47:04 +00:00
|
|
|
with:
|
2022-05-28 00:38:12 +00:00
|
|
|
npm: true
|
|
|
|
install: true
|
|
|
|
- name: Check Templated JS Files
|
2021-12-02 11:47:04 +00:00
|
|
|
run: |
|
|
|
|
cd ci
|
2022-05-28 00:38:12 +00:00
|
|
|
python3 check_js_templates.py
|
2021-12-02 11:47:04 +00:00
|
|
|
- name: Lint Javascript Files
|
|
|
|
run: |
|
2022-06-25 00:50:26 +00:00
|
|
|
python InvenTree/manage.py prerender
|
|
|
|
npx eslint InvenTree/InvenTree/static_i18n/i18n/*.js
|
2021-12-02 11:49:37 +00:00
|
|
|
|
2022-05-28 00:38:12 +00:00
|
|
|
pre-commit:
|
|
|
|
name: Style [pre-commit]
|
|
|
|
runs-on: ubuntu-20.04
|
2021-12-02 12:14:38 +00:00
|
|
|
|
|
|
|
needs: pep_style
|
2022-05-28 00:38:12 +00:00
|
|
|
|
|
|
|
steps:
|
2022-10-17 02:46:12 +00:00
|
|
|
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0
|
2022-08-14 22:20:03 +00:00
|
|
|
- name: Set up Python ${{ env.python_version }}
|
2022-10-17 02:46:12 +00:00
|
|
|
uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # pin@v4.3.0
|
2022-08-14 22:20:03 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ env.python_version }}
|
|
|
|
cache: 'pip'
|
|
|
|
- name: Run pre-commit Checks
|
2022-10-17 02:46:12 +00:00
|
|
|
uses: pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507 # pin@v3.0.0
|
2022-08-14 22:20:03 +00:00
|
|
|
- name: Check Version
|
|
|
|
run: |
|
|
|
|
pip install requests
|
|
|
|
python3 ci/version_check.py
|
2022-05-28 00:38:12 +00:00
|
|
|
|
2023-05-01 21:58:57 +00:00
|
|
|
mkdocs:
|
2023-06-09 00:16:30 +00:00
|
|
|
name: Style [Documentation]
|
2023-05-01 21:58:57 +00:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
|
|
|
needs: paths-filter
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0
|
|
|
|
- name: Set up Python ${{ env.python_version }}
|
|
|
|
uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # pin@v4.3.0
|
|
|
|
with:
|
|
|
|
python-version: ${{ env.python_version }}
|
|
|
|
- name: Check Config
|
|
|
|
run: |
|
|
|
|
pip install pyyaml
|
|
|
|
python docs/ci/check_mkdocs_config.py
|
|
|
|
- name: Check Links
|
|
|
|
run: |
|
|
|
|
pip install linkcheckmd requests
|
|
|
|
python -m linkcheckmd docs --recurse
|
|
|
|
|
2022-05-28 00:38:12 +00:00
|
|
|
python:
|
|
|
|
name: Tests - inventree-python
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
|
|
|
needs: pre-commit
|
2021-12-02 12:14:38 +00:00
|
|
|
|
2021-12-02 12:17:45 +00:00
|
|
|
env:
|
|
|
|
wrapper_name: inventree-python
|
2022-05-12 00:52:53 +00:00
|
|
|
INVENTREE_DB_ENGINE: django.db.backends.sqlite3
|
|
|
|
INVENTREE_DB_NAME: ../inventree_unit_test_db.sqlite3
|
|
|
|
INVENTREE_ADMIN_USER: testuser
|
|
|
|
INVENTREE_ADMIN_PASSWORD: testpassword
|
|
|
|
INVENTREE_ADMIN_EMAIL: test@test.com
|
|
|
|
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-10-17 02:46:12 +00:00
|
|
|
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0
|
2023-06-03 14:04:52 +00:00
|
|
|
- name: Environment Setup
|
2022-05-28 00:38:12 +00:00
|
|
|
uses: ./.github/actions/setup
|
|
|
|
with:
|
2022-05-28 23:40:37 +00:00
|
|
|
apt-dependency: gettext poppler-utils
|
2022-06-28 12:12:00 +00:00
|
|
|
dev-install: true
|
2022-05-28 00:38:12 +00:00
|
|
|
update: true
|
|
|
|
- name: Download Python Code For `${{ env.wrapper_name }}`
|
2022-08-14 22:20:03 +00:00
|
|
|
run: git clone --depth 1 https://github.com/inventree/${{ env.wrapper_name }}
|
|
|
|
./${{ env.wrapper_name }}
|
2022-05-28 00:38:12 +00:00
|
|
|
- name: Start InvenTree Server
|
2021-12-02 12:14:38 +00:00
|
|
|
run: |
|
2022-05-12 00:52:53 +00:00
|
|
|
invoke delete-data -f
|
|
|
|
invoke import-fixtures
|
|
|
|
invoke server -a 127.0.0.1:12345 &
|
2022-05-19 01:55:53 +00:00
|
|
|
invoke wait
|
2022-05-28 00:38:12 +00:00
|
|
|
- name: Run Tests For `${{ env.wrapper_name }}`
|
2021-12-02 12:14:38 +00:00
|
|
|
run: |
|
2021-12-02 12:17:45 +00:00
|
|
|
cd ${{ env.wrapper_name }}
|
2022-05-12 00:52:53 +00:00
|
|
|
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-06-01 15:37:39 +00:00
|
|
|
docstyle:
|
|
|
|
name: Style [Python Docstrings]
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
|
|
|
needs: pre-commit
|
|
|
|
continue-on-error: true
|
|
|
|
|
|
|
|
steps:
|
2022-10-17 02:46:12 +00:00
|
|
|
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0
|
2023-06-03 14:04:52 +00:00
|
|
|
- name: Environment Setup
|
2022-06-01 15:37:39 +00:00
|
|
|
uses: ./.github/actions/setup
|
|
|
|
with:
|
|
|
|
install: true
|
|
|
|
- name: Run flake8
|
|
|
|
run: flake8 InvenTree --statistics
|
|
|
|
|
2021-12-02 12:25:01 +00:00
|
|
|
coverage:
|
2022-05-28 00:38:12 +00:00
|
|
|
name: Tests - DB [SQLite] + Coverage
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
2023-05-02 10:03:52 +00:00
|
|
|
needs: [ 'javascript', 'pre-commit' ]
|
2022-08-14 22:20:03 +00:00
|
|
|
continue-on-error: true # continue if a step fails so that coverage gets pushed
|
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
|
2022-01-11 03:15:51 +00:00
|
|
|
INVENTREE_PLUGINS_ENABLED: true
|
2023-05-01 12:13:35 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2021-12-02 12:25:01 +00:00
|
|
|
|
|
|
|
steps:
|
2022-10-17 02:46:12 +00:00
|
|
|
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0
|
2023-06-03 14:04:52 +00:00
|
|
|
- name: Environment Setup
|
2022-05-28 00:38:12 +00:00
|
|
|
uses: ./.github/actions/setup
|
2021-12-02 12:25:01 +00:00
|
|
|
with:
|
2022-05-28 23:40:37 +00:00
|
|
|
apt-dependency: gettext poppler-utils
|
2022-06-28 12:12:00 +00:00
|
|
|
dev-install: true
|
2022-05-28 00:38:12 +00:00
|
|
|
update: true
|
|
|
|
- name: Data Export Test
|
|
|
|
uses: ./.github/actions/migration
|
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
|
2023-05-01 12:13:35 +00:00
|
|
|
- name: Coverage Tests
|
|
|
|
run: invoke coverage
|
2021-12-02 23:28:53 +00:00
|
|
|
- name: Upload Coverage Report
|
2023-05-01 12:13:35 +00:00
|
|
|
uses: coverallsapp/github-action@v2
|
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
2021-12-02 12:34:01 +00:00
|
|
|
|
|
|
|
postgres:
|
2022-05-28 00:38:12 +00:00
|
|
|
name: Tests - DB [PostgreSQL]
|
|
|
|
runs-on: ubuntu-20.04
|
2023-05-02 10:03:52 +00:00
|
|
|
needs: [ 'javascript', 'pre-commit' ]
|
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
|
2022-01-11 03:15:51 +00:00
|
|
|
INVENTREE_PLUGINS_ENABLED: true
|
2021-12-02 12:34:01 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
2022-10-16 13:09:31 +00:00
|
|
|
image: postgres:14
|
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-10-17 02:46:12 +00:00
|
|
|
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0
|
2023-06-03 14:04:52 +00:00
|
|
|
- name: Environment Setup
|
2022-05-28 00:38:12 +00:00
|
|
|
uses: ./.github/actions/setup
|
2021-12-02 12:34:01 +00:00
|
|
|
with:
|
2022-05-28 23:40:37 +00:00
|
|
|
apt-dependency: gettext poppler-utils libpq-dev
|
2022-05-28 00:38:12 +00:00
|
|
|
pip-dependency: psycopg2 django-redis>=5.0.0
|
2022-07-01 02:36:20 +00:00
|
|
|
dev-install: true
|
2022-05-28 00:38:12 +00:00
|
|
|
update: true
|
2021-12-02 12:34:01 +00:00
|
|
|
- name: Run Tests
|
|
|
|
run: invoke test
|
2022-05-28 00:38:12 +00:00
|
|
|
- name: Data Export Test
|
|
|
|
uses: ./.github/actions/migration
|
2021-12-02 12:34:01 +00:00
|
|
|
|
2021-12-02 12:37:26 +00:00
|
|
|
mysql:
|
2022-05-28 00:38:12 +00:00
|
|
|
name: Tests - DB [MySQL]
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
2023-05-02 10:03:52 +00:00
|
|
|
needs: [ 'javascript', 'pre-commit' ]
|
2022-05-11 04:16:39 +00:00
|
|
|
if: github.event_name == 'push'
|
2022-05-11 04:15:44 +00:00
|
|
|
|
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
|
2022-01-11 03:15:51 +00:00
|
|
|
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
|
2022-08-14 22:20:03 +00:00
|
|
|
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s
|
|
|
|
--health-retries=3
|
2021-12-02 12:37:26 +00:00
|
|
|
ports:
|
2021-12-02 23:34:35 +00:00
|
|
|
- 3306:3306
|
2021-12-02 12:37:26 +00:00
|
|
|
|
|
|
|
steps:
|
2022-10-17 02:46:12 +00:00
|
|
|
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0
|
2023-06-03 14:04:52 +00:00
|
|
|
- name: Environment Setup
|
2022-05-28 00:38:12 +00:00
|
|
|
uses: ./.github/actions/setup
|
2021-12-02 12:37:26 +00:00
|
|
|
with:
|
2022-05-28 23:40:37 +00:00
|
|
|
apt-dependency: gettext poppler-utils libmysqlclient-dev
|
2022-05-28 00:38:12 +00:00
|
|
|
pip-dependency: mysqlclient
|
2022-07-01 02:36:20 +00:00
|
|
|
dev-install: true
|
2022-05-28 00:38:12 +00:00
|
|
|
update: true
|
2021-12-02 12:37:26 +00:00
|
|
|
- name: Run Tests
|
|
|
|
run: invoke test
|
2022-05-28 00:38:12 +00:00
|
|
|
- name: Data Export Test
|
|
|
|
uses: ./.github/actions/migration
|