-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
109 lines (84 loc) · 2.96 KB
/
.gitignore
File metadata and controls
109 lines (84 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# Copyright 2019-2022 Diffblue Limited. All Rights Reserved.
# Unpublished proprietary source code.
# Use is governed by https://docs.diffblue.com/licenses/eula
# If something doesn't appear to be listed here, try this command:
#
# $ git check-ignore -v <filename>
#
# It will tell you why / where it is ignored, including the line number of the rule.
# Target folders
target
# Test output folders
test-output
# Gradle working files
.gradle
# Log file
*.log
# License files, automatically generated by the maven-notice-plugin
*/LICENSE
*/LICENSE-*
*/NOTICE
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# Force some Gradle includes
!gradle-wrapper.jar
!gradle-wrapper.properties
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# IDEs
.classpath
.idea
*.iml
.flattened-pom.xml
.project
.settings
# Diffblue indexes generated by dogfooding
.diffblue/
*.xd
*.lck
# Ignore bulk test outputs
fuzztest/tests/bulk/*/src/test
# Generated files
cover-assertion-suggestion/assertion-suggestion.sh
cover-intellij-java/src/main/resources/META-INF/plugin.xml
dependency-reduced-pom.xml
# ProGuard generated files
**/map/*.map
# ignore tests within the test projects
cover-fuzztest/test-projects/**/src/test/java/**/**DiffblueTest.java
# ignore files generated by the cf.sh tool
cover-fuzztest/test-projects/**/prev.*
cover-fuzztest/test-projects/**/status.txt
cover-fuzztest/test-projects/**/report.json
cover-fuzztest/test-projects/**/ris-agent-*.txt
# cover-reports/telescope entries
# H2 Database
cover-reports/webapp/telescope.mv.db
# Data files
cover-reports/data
# Dogfooded test files that contain non-determinism - will cause merge conflicts if merged
# - Result depend on the processor
#cover-client-java/src/diffblue-test/java/com/diffblue/cover/analytics/SystemAnalyticsProviderDiffblueTest.java
# - Result of FileSystem.toValidPath depends on the system it is run on
#cover-cli/src/diffblue-test/java/com/diffblue/cover/validation/FileSystemDiffblueTest.java
# - Classes containing hashCode methods for which assertion can vary non-deterministically
#cover-client-java/src/diffblue-test/java/com/diffblue/cover/session/ModuleIdentifierDiffblueTest.java
#dcover-agent/src/diffblue-test/java/com/diffblue/cover/agent/readwrite/AccessDiffblueTest.java
#cover-assertion-suggestion/src/diffblue-test/java/com/diffblue/assertion/protobuf/AssertionConfigProtoDiffblueTest.java
#cover-assertion-suggestion/src/diffblue-test/java/com/diffblue/assertion/protobuf/ServiceConfigProtoDiffblueTest.java
#cover-fuzztest/src/diffblue-test/java/com/diffblue/fuzztest/tir/IGenAssertionsStrategyDiffblueTest.java
#cover-tir-core/src/diffblue-test/java/com/diffblue/tir/step/mock/MockDeferToSystemLoaderAnnDiffblueTest.java
# Mac specific file - it shouldn't need to be in a project's .gitignore because users should add it globally, but some don't.
.DS_Store
# Python cache directory
**/__pycache__