Skip to content

Commit b47e6f9

Browse files
committed
chore(ci): adjust glob for test folder on Codacy config
1 parent 714c0e8 commit b47e6f9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.codacy.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# Codacy configuration for excluding files and folders from analysis
22
# https://docs.codacy.com/repositories-configure/codacy-configuration-file/#ignore-files
3-
# Uses Java GLOB syntax: https://docs.oracle.com/javase/tutorial/essential/io/fileOps.html#glob
3+
# Uses Java glob syntax: https://docs.oracle.com/javase/tutorial/essential/io/fileOps.html#glob
44

55
exclude_paths:
6-
# Ignore all project-level metadata and documentation
6+
7+
# Ignore all root-level metadata and documentation
78
- '.gitignore' # root Git ignore file
9+
- '.runsettings' # root runsettings file
810
- 'LICENSE' # root license file
911
- 'README.md' # root readme
1012

@@ -26,4 +28,4 @@ exclude_paths:
2628
- '**/Models/**' # Domain and DTO models
2729
- '**/Properties/**' # launchSettings.json or AssemblyInfo.cs
2830
- '**/Utilities/**' # Helper extensions or static classes
29-
- '**/test/**' # Entire test suite (unit + integration)
31+
- 'test/**/*' # Entire test suite (unit + integration)

0 commit comments

Comments
 (0)