From 6ec71bb93845f5ed80874960765fde7c4317f2c5 Mon Sep 17 00:00:00 2001 From: Sebastian Dietze Date: Wed, 9 Mar 2022 13:39:36 +0100 Subject: [PATCH 1/2] Create gitignore file for ECU-TEST workspaces --- ECU-TEST.gitignore | 62 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 ECU-TEST.gitignore diff --git a/ECU-TEST.gitignore b/ECU-TEST.gitignore new file mode 100644 index 00000000..eb6789e6 --- /dev/null +++ b/ECU-TEST.gitignore @@ -0,0 +1,62 @@ +# gitignore template for ECU-TEST workspaces +# website: https://www.ecu-test.com +# * all directories are related to the default directories, please adapt the .gitignore if you use customized +# directories + +# Dynamic workspace settings +# * We don't recommend to ignore the .workspace directory, because of important project specific settings +# local user settings +.workspace/ETdrive.xml +.workspace/favorites.xml +.workspace/filters.xml +.workspace/generators.xml +.workspace/history.xml +.workspace/parallelExecution.xml +.workspace/signalviewer.xml +.workspace/signalViewerHistory.json +.workspace/signalviewer2layout.xml +.workspace/testeditor.xml +.workspace/tooladapter.xml +.workspace/view.xml +# optional, if your process depends on this file remove exclusion +.workspace/interactiveexecution.xml +.workspace/pythonlibrary.xml +# deprecated, support for older versions +.workspace/traceexplorer.xml + +# 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 +*.arxml +*.a2l +*.dbc +*.hex +*.s19 +[tT]estdata +[tT]estdaten + +# 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 +TestReports + +# 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 +Templates + +# Exclude large binary artifacts +# * you can manage your artifacts also with TEST-GUIDE (https://www.test-guide.info) and reference them via Playbooks +Offline-FIUs +Offline-Models +Offline-SGBDs +*.exe +*.msi +*.zip +*.7z + +# Exclude default and custom temporary directories +Backup_* + +# Python bytecode and cache files +__pycache__/ +*.py[cod] From c70d6acf3e52cf9ed6eaddedb0e4e95a2935cb10 Mon Sep 17 00:00:00 2001 From: Sebastian Dietze Date: Mon, 17 Oct 2022 16:57:55 +0200 Subject: [PATCH 2/2] Highlight origin of .gitignore --- ECU-TEST.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ECU-TEST.gitignore b/ECU-TEST.gitignore index eb6789e6..d25ba945 100644 --- a/ECU-TEST.gitignore +++ b/ECU-TEST.gitignore @@ -1,4 +1,4 @@ -# gitignore template for ECU-TEST workspaces +# gitignore template for ECU-TEST workspaces - by TraceTronic https://tracetronic.com # website: https://www.ecu-test.com # * all directories are related to the default directories, please adapt the .gitignore if you use customized # directories