Skip to content

Commit d9c2ce2

Browse files
authored
Merge pull request #4 from rob-ross/cycle_tests
How many descriptions does one need? Finished all cyclic data graph tests and code to implement this feature.
2 parents 47ddaac + decc9ce commit d9c2ce2

File tree

9 files changed

+539
-621
lines changed

9 files changed

+539
-621
lines changed

.gitignore

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Reminder: .gitignore does not support comments at the end of a line.
2+
13
# Python bytecode and caches
24
__pycache__/
35
*.py[cod]
@@ -32,17 +34,20 @@ coverage.xml
3234
# IDEs / Editors
3335
### IntelliJ IDEA ###
3436
out/
35-
.idea/ # JetBrains IDEs (PyCharm, IntelliJ)
36-
.iml
37-
.vscode/ # Visual Studio Code (can sometimes share launch.json/settings.json if desired)
38-
*.sublime-* # Sublime Text
39-
nbproject/ # NetBeans
40-
*.swp # Vim swap files
41-
*~ # Backup files (common convention)
37+
.idea/
38+
*.iml
39+
*.iws
40+
*.ipr
41+
42+
.vscode/
43+
*.sublime-*
44+
nbproject/
45+
*.swp
46+
*~
4247

4348
# Operating System files
44-
.DS_Store # macOS
45-
Thumbs.db # Windows
49+
.DS_Store
50+
Thumbs.db
4651

4752

4853
# Secrets (use with caution, prefer dedicated secret management)
@@ -53,14 +58,8 @@ Thumbs.db # Windows
5358
*.pem
5459
credentials.*
5560
secrets.*
56-
*.env # If used for secrets
61+
*.env
5762

5863
# Log files
5964
*.log
6065
logs/
61-
62-
63-
# local data and config home directory
64-
wordspy_home/
65-
66-

killerbunny/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@
55
# Created by: Robert L. Ross
66
#
77

8+
# In killerbunny/__init__.py
9+
"""KillerBunny package for JSONPath Query evaluation."""

killerbunny/evaluating/cyclic_data.txt

Lines changed: 0 additions & 103 deletions
This file was deleted.

0 commit comments

Comments
 (0)