.gitignore pour ECU-TEST
37 règles d’exclusion pour ECU-TEST, prêtes à copier dans votre dépôt.
Logiciel d'automatisation de tests
Le .gitignore complet pour ECU-TEST
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:32:05 UTC
# Technologies: ECU-TEST
### ECU-TEST ###
# 7-Zip archive
*.7z
.workspace/ETdrive.xml
.workspace/favorites.xml
.workspace/filters.xml
# Windows executable
*.exe
.workspace/generators.xml
# Windows installer package
*.msi
.workspace/history.xml
.workspace/parallelExecution.xml
# ZIP archive
*.zip
.workspace/signalviewer.xml
.workspace/signalViewerHistory.json
.workspace/signalviewer2layout.xml
.workspace/testeditor.xml
.workspace/tooladapter.xml
.workspace/view.xml
.workspace/attributeLists.xml
.workspace/interactiveexecution.xml
.workspace/protocol.xml
.workspace/pythonlibrary.xml
.workspace/traceexplorer.xml
*.arxml
*.a2l
*.dbc
# Hex dump file
*.hex
*.s19
[tT]estdata
[tT]estdaten
TestReports
Templates
PyLibs
Offline-FIUs
Offline-Models
Offline-SGBDs
Backup_*
# Python bytecode cache directory
__pycache__/
# Python compiled bytecode
*.py[cod]
Ce que ces règles ECU-TEST ignorent vraiment
Chaque motif ci-dessous, et pourquoi il a sa place dans votre .gitignore.
General
| Motif | Ce qu’il ignore |
|---|---|
.workspace/ETdrive.xml |
Dynamic workspace settings * We don't recommend to ignore the .workspace directory, because of important * project specific settings * local user settings |
*.7z |
7-Zip archive |
.workspace/favorites.xml |
General |
.workspace/filters.xml |
General |
.workspace/generators.xml |
General |
*.exe |
Windows executable |
.workspace/history.xml |
General |
*.msi |
Windows installer package |
.workspace/parallelExecution.xml |
General |
.workspace/signalviewer.xml |
General |
*.zip |
ZIP archive |
.workspace/signalViewerHistory.json |
General |
.workspace/signalviewer2layout.xml |
General |
.workspace/testeditor.xml |
General |
.workspace/tooladapter.xml |
General |
.workspace/view.xml |
General |
.workspace/attributeLists.xml |
optional, if your process depends on this file remove exclusion |
.workspace/interactiveexecution.xml |
General |
.workspace/protocol.xml |
General |
.workspace/pythonlibrary.xml |
General |
.workspace/traceexplorer.xml |
deprecated, support for older versions |
*.arxml |
Custom file formats and test dependencies * you can manage your artifacts also with test.guide (https://www.test-guide.info) and reference them via Playbooks |
*.a2l |
General |
*.dbc |
General |
*.hex |
Hex dump file |
*.s19 |
General |
[tT]estdata |
General |
[tT]estdaten |
General |
TestReports |
Test results and test execution related content * Git is not intended to store and provide test results for all iterations * We recommend to use test.guide (https://www.test-guide.info) for the test report management |
Templates |
Report generators and templates * if you want to provide (f.e.) your own report generators exclude the directory here and ignore only the unnecessary subdirectories |
PyLibs |
optional, default for external Python libraries |
Offline-FIUs |
Exclude large binary artifacts * you can manage your artifacts also with test.guide (https://www.test-guide.info) and reference them via Playbooks |
Offline-Models |
General |
Offline-SGBDs |
General |
Exclude default and custom temporary directories
| Motif | Ce qu’il ignore |
|---|---|
Backup_* |
Exclude default and custom temporary directories |
Python bytecode and cache files
| Motif | Ce qu’il ignore |
|---|---|
__pycache__/ |
Python bytecode cache directory |
*.py[cod] |
Python compiled bytecode |
Comment utiliser ce .gitignore pour ECU-TEST
- Copiez les règles ECU-TEST ci-dessus, ou téléchargez directement le fichier.
- Créez un fichier nommé .gitignore à la racine de votre dépôt Git et collez-y les règles.
- Si certains de ces fichiers sont déjà suivis, lancez git rm -r --cached . puis recommitez — Git n’applique les règles d’exclusion qu’aux fichiers non suivis.
- Commitez le .gitignore pour que toute l’équipe partage les mêmes règles.