mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
move build.py back to root
This commit is contained in:
parent
14f500e856
commit
40fe1402c3
4 changed files with 6 additions and 4 deletions
2
.github/workflows/build.yaml
vendored
2
.github/workflows/build.yaml
vendored
|
@ -28,7 +28,7 @@ jobs:
|
|||
python -m pip install pyyaml
|
||||
|
||||
- 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
|
||||
uses: actions/upload-artifact@v2
|
||||
|
|
2
.github/workflows/publish.yaml
vendored
2
.github/workflows/publish.yaml
vendored
|
@ -31,7 +31,7 @@ jobs:
|
|||
python -m pip install pyyaml
|
||||
|
||||
- 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
|
||||
uses: actions/upload-artifact@v2
|
||||
|
|
6
tox.ini
6
tox.ini
|
@ -1,7 +1,7 @@
|
|||
[flake8]
|
||||
max-line-length = 9999
|
||||
import-order-style = pep8
|
||||
exclude = .git,.vscode,.build,libraries
|
||||
exclude = .git,.vscode,libraries,build.py
|
||||
extend-ignore =
|
||||
I202
|
||||
per-file-ignores =
|
||||
|
@ -19,6 +19,8 @@ source =
|
|||
context_play.py
|
||||
default.py
|
||||
service.py
|
||||
omit = tests/*
|
||||
omit =
|
||||
tests/*
|
||||
build.py
|
||||
branch = True
|
||||
command_line = -m pytest --junitxml=test.xml
|
||||
|
|
Loading…
Reference in a new issue