2 Commits

Author SHA1 Message Date
354e54a6d3 remove __pycache__
All checks were successful
CI / test (push) Successful in 12s
Release SDSAT / release (push) Successful in 11s
2026-02-14 16:59:18 +01:00
8d5b48e100 add -fix for ruff
All checks were successful
CI / test (push) Successful in 11s
Release SDSAT / release (push) Successful in 10s
2026-02-14 12:19:49 +01:00

View File

@@ -23,7 +23,7 @@ jobs:
- name: Lint + Tests
run: |
ruff check .
ruff check . --fix
pytest -q
- name: Build SDSAT tar.gz with metadata (no __init__)
@@ -35,8 +35,9 @@ jobs:
# Copie uniquement le contenu de scripts/ dans buildtmp/bin
cp -r scripts/. buildtmp/bin/
# Exclure __init__.py
# Exclure __init__.py and remove buildtmp/bin/__pycache__
find buildtmp/bin -name "__init__.py" -delete
rm -R "buildtmp/bin/__pycache__"
# Metadata
cat > buildtmp/update/BUILD_INFO.txt <<EOF