Skip to content

Commit 82b68ea

Browse files
committed
Update test config, ignore files, and report data
Added new files to .gitignore for sensitive and output data. Updated pyproject.toml to use correct test class names for dotplot and lz_complexity plugins. Expanded report.json with more test results, metrics, and plugin metadata, reflecting a larger input and additional plugins. Updated templates/report_template.html to support new report structure.
1 parent 81d4784 commit 82b68ea

4 files changed

Lines changed: 899 additions & 423 deletions

File tree

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,9 @@ cython_debug/
178178
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
179179
# refer to https://docs.cursor.com/context/ignore-files
180180
.cursorignore
181-
.cursorindexingignore
181+
.cursorindexingignore
182+
key.txt
183+
pattern.txt
184+
report.json
185+
report.html
186+
report.json

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ autocorrelation = "patternlab.plugins.autocorrelation:AutocorrelationTest"
4646
binary_matrix_rank = "patternlab.plugins.binary_matrix_rank:BinaryMatrixRankTest"
4747
block_frequency = "patternlab.plugins.block_frequency_test:BlockFrequencyTest"
4848
cusum = "patternlab.plugins.cusum:CumulativeSumsTest"
49-
dotplot = "patternlab.plugins.dotplot:DotplotPlugin"
49+
dotplot = "patternlab.plugins.dotplot:DotplotTest"
5050
fft_placeholder = "patternlab.plugins.fft_placeholder:FFTPlaceholder"
5151
fft_spectral = "patternlab.plugins.fft_spectral:FFTSpectralTest"
5252
linear_complexity = "patternlab.plugins.linear_complexity:LinearComplexityTest"
5353
longest_run = "patternlab.plugins.longest_run:LongestRunOnesTest"
54-
lz_complexity = "patternlab.plugins.lz_complexity:LZComplexityPlugin"
54+
lz_complexity = "patternlab.plugins.lz_complexity:LZComplexityTest"
5555
maurers_universal = "patternlab.plugins.maurers_universal:MaurersUniversalTest"
5656
monobit = "patternlab.plugins.monobit:MonobitTest"
5757
nist_dft_spectral = "patternlab.plugins.nist_dft_spectral:NISTDFTSpectralTest"

0 commit comments

Comments
 (0)