mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Change step / job docstrings
This commit is contained in:
parent
9795abcb9e
commit
867882f521
13
.github/workflows/qc_checks.yaml
vendored
13
.github/workflows/qc_checks.yaml
vendored
@ -35,7 +35,7 @@ jobs:
|
|||||||
uses: ./.github/actions/setup
|
uses: ./.github/actions/setup
|
||||||
with:
|
with:
|
||||||
install: true
|
install: true
|
||||||
- name: flake8
|
- name: Run flake8
|
||||||
run: flake8 InvenTree --extend-ignore=D
|
run: flake8 InvenTree --extend-ignore=D
|
||||||
|
|
||||||
javascript:
|
javascript:
|
||||||
@ -51,7 +51,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
npm: true
|
npm: true
|
||||||
install: true
|
install: true
|
||||||
- name: Check Templated Files
|
- name: Check Templated JS Files
|
||||||
run: |
|
run: |
|
||||||
cd ci
|
cd ci
|
||||||
python3 check_js_templates.py
|
python3 check_js_templates.py
|
||||||
@ -89,7 +89,8 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: ${{ env.python_version }}
|
python-version: ${{ env.python_version }}
|
||||||
cache: 'pip'
|
cache: 'pip'
|
||||||
- uses: pre-commit/action@v2.0.3
|
- name: Run pre-commit Checks
|
||||||
|
uses: pre-commit/action@v2.0.3
|
||||||
|
|
||||||
python:
|
python:
|
||||||
name: Tests - inventree-python
|
name: Tests - inventree-python
|
||||||
@ -115,15 +116,15 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
apt-dependency: gettext
|
apt-dependency: gettext
|
||||||
update: true
|
update: true
|
||||||
- name: Download Python Code
|
- name: Download Python Code For `${{ env.wrapper_name }}`
|
||||||
run: git clone --depth 1 https://github.com/inventree/${{ env.wrapper_name }} ./${{ env.wrapper_name }}
|
run: git clone --depth 1 https://github.com/inventree/${{ env.wrapper_name }} ./${{ env.wrapper_name }}
|
||||||
- name: Start Server
|
- name: Start InvenTree Server
|
||||||
run: |
|
run: |
|
||||||
invoke delete-data -f
|
invoke delete-data -f
|
||||||
invoke import-fixtures
|
invoke import-fixtures
|
||||||
invoke server -a 127.0.0.1:12345 &
|
invoke server -a 127.0.0.1:12345 &
|
||||||
invoke wait
|
invoke wait
|
||||||
- name: Run Tests
|
- name: Run Tests For `${{ env.wrapper_name }}`
|
||||||
run: |
|
run: |
|
||||||
cd ${{ env.wrapper_name }}
|
cd ${{ env.wrapper_name }}
|
||||||
invoke check-server
|
invoke check-server
|
||||||
|
Loading…
Reference in New Issue
Block a user