ECU-TEST.gitignore 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # gitignore template for ECU-TEST workspaces - by TraceTronic https://tracetronic.com
  2. # website: https://www.ecu-test.com
  3. # * all directories are related to the default directories, please adapt the .gitignore if you use customized
  4. # directories
  5. # Dynamic workspace settings
  6. # * We don't recommend to ignore the .workspace directory, because of important project specific settings
  7. # local user settings
  8. .workspace/ETdrive.xml
  9. .workspace/favorites.xml
  10. .workspace/filters.xml
  11. .workspace/generators.xml
  12. .workspace/history.xml
  13. .workspace/parallelExecution.xml
  14. .workspace/signalviewer.xml
  15. .workspace/signalViewerHistory.json
  16. .workspace/signalviewer2layout.xml
  17. .workspace/testeditor.xml
  18. .workspace/tooladapter.xml
  19. .workspace/view.xml
  20. # optional, if your process depends on this file remove exclusion
  21. .workspace/interactiveexecution.xml
  22. .workspace/pythonlibrary.xml
  23. # deprecated, support for older versions
  24. .workspace/traceexplorer.xml
  25. # Custom file formats and test dependencies
  26. # * you can manage your artifacts also with TEST-GUIDE (https://www.test-guide.info) and reference them via Playbooks
  27. *.arxml
  28. *.a2l
  29. *.dbc
  30. *.hex
  31. *.s19
  32. [tT]estdata
  33. [tT]estdaten
  34. # Test results and test execution related content
  35. # * Git is not intended to store and provide test results for all iterations
  36. # * We recommend to use TEST-GUIDE (https://www.test-guide.info) for the test report management
  37. TestReports
  38. # Report generators and templates
  39. # * if you want to provide (f.e.) your own report generators exclude the directory here and ignore only the
  40. # unnecessary subdirectories
  41. Templates
  42. # Exclude large binary artifacts
  43. # * you can manage your artifacts also with TEST-GUIDE (https://www.test-guide.info) and reference them via Playbooks
  44. Offline-FIUs
  45. Offline-Models
  46. Offline-SGBDs
  47. *.exe
  48. *.msi
  49. *.zip
  50. *.7z
  51. # Exclude default and custom temporary directories
  52. Backup_*
  53. # Python bytecode and cache files
  54. __pycache__/
  55. *.py[cod]