mirror of
https://github.com/netinvent/npbackup.git
synced 2025-09-11 23:45:29 +08:00
Fixing upgrade_server requirementx path
This commit is contained in:
parent
988fa03045
commit
0fc31247eb
2 changed files with 2 additions and 2 deletions
2
.github/workflows/pylint-linux.yaml
vendored
2
.github/workflows/pylint-linux.yaml
vendored
|
@ -23,7 +23,7 @@ jobs:
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install --upgrade setuptools
|
python -m pip install --upgrade setuptools
|
||||||
if [ -f npbackup/requirements.txt ]; then pip install -r npbackup/requirements.txt; fi
|
if [ -f npbackup/requirements.txt ]; then pip install -r npbackup/requirements.txt; fi
|
||||||
if [ -f upgrade_server/upgrade_server/requirements.txt ]; then pip install -r upgrade_server/upgrade_server/requirements.txt; fi
|
if [ -f upgrade_server/requirements.txt ]; then pip install -r upgrade_server/requirements.txt; fi
|
||||||
- name: Lint with Pylint
|
- name: Lint with Pylint
|
||||||
if: ${{ matrix.python-version == '3.11' }}
|
if: ${{ matrix.python-version == '3.11' }}
|
||||||
run: |
|
run: |
|
||||||
|
|
2
.github/workflows/pylint-windows.yaml
vendored
2
.github/workflows/pylint-windows.yaml
vendored
|
@ -24,7 +24,7 @@ jobs:
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install --upgrade setuptools
|
python -m pip install --upgrade setuptools
|
||||||
if (Test-Path "npbackup/requirements.txt") { pip install -r npbackup/requirements.txt }
|
if (Test-Path "npbackup/requirements.txt") { pip install -r npbackup/requirements.txt }
|
||||||
if (Test-Path "upgrade_server/upgrade_server/requirements.txt") { pip install -r upgrade_server/upgrade_server/requirements.txt }
|
if (Test-Path "upgrade_server/requirements.txt") { pip install -r upgrade_server/requirements.txt }
|
||||||
- name: Lint with Pylint
|
- name: Lint with Pylint
|
||||||
if: ${{ matrix.python-version == '3.11' }}
|
if: ${{ matrix.python-version == '3.11' }}
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Reference in a new issue