move build.py back to root

This commit is contained in:
h1dden-da3m0n 2021-06-01 21:39:51 +02:00
parent 14f500e856
commit 40fe1402c3
4 changed files with 6 additions and 4 deletions

View File

@ -28,7 +28,7 @@ jobs:
python -m pip install pyyaml python -m pip install pyyaml
- name: Create ${{ matrix.py_version }} addon.xml - name: Create ${{ matrix.py_version }} addon.xml
run: python .build/build.py --version ${{ matrix.py_version }} --source . --target . run: python build.py --version ${{ matrix.py_version }}
- name: Publish Build Artifact - name: Publish Build Artifact
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2

View File

@ -31,7 +31,7 @@ jobs:
python -m pip install pyyaml python -m pip install pyyaml
- name: Create ${{ matrix.py_version }} addon.xml - name: Create ${{ matrix.py_version }} addon.xml
run: python .build/build.py --version ${{ matrix.py_version }} --source . --target . run: python build.py --version ${{ matrix.py_version }}
- name: Publish Build Artifact - name: Publish Build Artifact
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2

View File

@ -1,7 +1,7 @@
[flake8] [flake8]
max-line-length = 9999 max-line-length = 9999
import-order-style = pep8 import-order-style = pep8
exclude = .git,.vscode,.build,libraries exclude = .git,.vscode,libraries,build.py
extend-ignore = extend-ignore =
I202 I202
per-file-ignores = per-file-ignores =
@ -19,6 +19,8 @@ source =
context_play.py context_play.py
default.py default.py
service.py service.py
omit = tests/* omit =
tests/*
build.py
branch = True branch = True
command_line = -m pytest --junitxml=test.xml command_line = -m pytest --junitxml=test.xml