Rename scripts/ to tools/
This commit is contained in:
parent
2513f08d07
commit
7cb3501540
|
@ -41,7 +41,7 @@ jobs:
|
||||||
|
|
||||||
- name: Generate packages list
|
- name: Generate packages list
|
||||||
run: |
|
run: |
|
||||||
scripts/packages.py --dev --format line ${{ matrix.release }} \
|
tools/packages.py --dev --format line ${{ matrix.release }} \
|
||||||
python_apps/airtime_analyzer \
|
python_apps/airtime_analyzer \
|
||||||
python_apps/pypo \
|
python_apps/pypo \
|
||||||
> packages.list
|
> packages.list
|
||||||
|
|
2
install
2
install
|
@ -764,7 +764,7 @@ if [ "$ignore_dependencies" = "f" ]; then
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
package_list=$(
|
package_list=$(
|
||||||
"${SCRIPT_DIR}/scripts/packages.py" --format=line "${code}" "${packages_files[@]}" ||
|
"${SCRIPT_DIR}/tools/packages.py" --format=line "${code}" "${packages_files[@]}" ||
|
||||||
(echo "ERROR: could not generate packages list" >&2 && exit 1)
|
(echo "ERROR: could not generate packages list" >&2 && exit 1)
|
||||||
)
|
)
|
||||||
set +e
|
set +e
|
||||||
|
|
|
@ -12,7 +12,7 @@ venv:
|
||||||
pip install -r requirements-dev.txt
|
pip install -r requirements-dev.txt
|
||||||
|
|
||||||
lint: venv
|
lint: venv
|
||||||
pylint scripts
|
pylint tools
|
||||||
|
|
||||||
test: venv
|
test: venv
|
||||||
pytest -n ${CPU_CORES} --color=yes -v .
|
pytest -n ${CPU_CORES} --color=yes -v .
|
|
@ -1,3 +1,3 @@
|
||||||
# Scripts
|
# Tools
|
||||||
|
|
||||||
This folder contains scripts/tools to manage the project.
|
This folder contains scripts/tools to manage the project.
|
Loading…
Reference in New Issue