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