textual-paint/cspell.json

191 lines
2.6 KiB
JSON
Raw Normal View History

2023-04-10 23:51:39 +03:00
{
"files": [
"**",
".*/**"
],
"enableFiletypes": [
"pip-requirements",
"shellscript",
"tlaplus_cfg", // file type detected wrong, I'm just trying to match *.cfg
"toml"
],
2023-04-10 23:51:39 +03:00
"ignorePaths": [
"snapshot_report.html",
"*.ambr",
2023-04-10 23:51:39 +03:00
".git",
"*.(bmp|png|jpg|jpeg|gif|svg|ico|tiff|tif|ans|flf)",
2023-04-15 01:06:53 +03:00
"*.log",
"**/localization/*/**/*",
"**/localization/*.sh",
"**/typings/**/*",
"**/samples/*",
"**/samples/**/*",
"__pycache__",
"**/*.egg-info/**/*"
2023-04-10 23:51:39 +03:00
],
"words": [
"afterstep",
2023-09-08 18:04:28 +03:00
"ambr",
2023-07-18 20:48:11 +03:00
"Andale",
"APNG",
2023-06-04 20:25:55 +03:00
"appcode",
"appscript",
"asyncio",
2023-04-22 05:51:00 +03:00
"bezier",
"blackbox",
2023-04-11 05:24:22 +03:00
"Bresenham",
"Bresenham's",
"bsetbg",
"bucketization",
"Caja",
2023-07-19 08:16:21 +03:00
"Cascadia",
2023-06-04 20:25:55 +03:00
"clion",
2023-04-11 01:44:24 +03:00
"cmdpxl",
"COLORTERM",
"conhost",
2023-07-19 08:16:21 +03:00
"Consola",
"Consolas",
2023-07-19 08:16:21 +03:00
"Cour",
2023-05-18 02:04:50 +03:00
"dasharray",
"dcop",
2023-05-13 10:18:20 +03:00
"Deutsch",
"DIALOGEX",
"disambiguates",
"dockable",
2023-09-13 03:45:37 +03:00
"docstrings",
2023-05-26 06:13:04 +03:00
"domtree",
"Dunder",
2023-06-04 20:25:55 +03:00
"emacsclient",
"executablepath",
"fbsetbg",
2023-05-13 07:56:55 +03:00
"Figlet",
2023-05-02 19:33:48 +03:00
"Fira",
"fluxbox",
"fudgedness",
"gconftool",
"getbands",
2023-04-19 09:08:01 +03:00
"getpid",
"getpixel",
2023-06-04 20:25:55 +03:00
"goland",
"gsettings",
2023-06-04 20:25:55 +03:00
"gvim",
"hackily",
2023-04-13 17:06:39 +03:00
"Haha",
2023-04-13 05:42:48 +03:00
"hkey",
2023-05-25 06:12:35 +03:00
"hslrgb",
"hsrgb",
2023-04-19 03:43:51 +03:00
"humbnail",
"icewm",
"icewmbg",
2023-05-15 06:20:18 +03:00
"icns",
"Inconsolata",
"Inkscape",
2023-06-04 20:25:55 +03:00
"Intelli",
"kdesktop",
"ksmserver",
"kubuntu",
"linewrap",
2023-04-10 23:51:39 +03:00
"𝗟𝙇",
2023-04-19 03:43:51 +03:00
"llpaper",
"lrgb",
"lubuntu",
"Lubuntu",
"Lucida",
"lxde",
"LXDE",
"mateconftool",
2023-07-18 20:48:11 +03:00
"Menlo",
2023-07-11 11:00:22 +03:00
"mirc",
2023-04-17 02:23:00 +03:00
"modd",
"mspaint",
2023-06-04 20:25:55 +03:00
"mvim",
"mypy",
2023-06-04 20:25:55 +03:00
"myusername",
"Nemo",
"Noto",
2023-04-10 23:51:39 +03:00
"Odhner",
"openbox",
"Openbox",
"osascript",
"pacman",
2023-04-21 22:05:15 +03:00
"pagedown",
"pageup",
"palettized",
"pcmanfm",
"performantly",
2023-06-04 20:25:55 +03:00
"phpstorm",
2023-04-19 19:00:34 +03:00
"pipreqs",
"pipx",
2023-04-11 01:44:24 +03:00
"Playscii",
2023-04-22 08:04:19 +03:00
"polyline",
2023-04-19 09:08:01 +03:00
"psutil",
2023-06-27 22:33:56 +03:00
"pybabel",
2023-04-15 01:06:53 +03:00
"pycache",
Use pyfakefs for file dialog tests - The app's directory structure is not a constant, and shouldn't play into this test. Aside from codebase restructuring, directories like `__pycache__` can come and go. - Even if a temporary directory were created with files enough to fill the view, the scrollbar would still change based on the folder structure outside of the temporary folder. - pyfakefs is one way to ensure a consistent view of a folder structure for testing. It allows adding real folders in a readonly way. It's more complicated than I thought it would be going in, since I had to add workarounds for pyfiglet and pytest-textual-snapshot, and handle an edge case in my EnhancedDirectoryTree (which got an error which seems to be swallowed?), not to mention pyfakefs raises an error saying "No such file or directory in the fake filesystem" when actually it's the real directory not existing when trying to add it to the fake filesystem, and VS Code was hiding stack frames and refusing to step into library code, and it turned out that I was resolving the absolute path wrong, but it looked right to me because the only part that was missing was "textual-paint", when, at a glance it seemed present, since the "textual_paint" part was present. Ay-ay-ay! - I don't know if this will fix the problem I saw where these tests' snapshots all changed with no visual or even structural changes, just the IDs of elements changing. I don't know what caused that. Oh yeah and this is still actually a problem: ============================================= short test summary info ============================================== FAILED tests/test_snapshots.py::test_paint_open_dialog[light_unicode] - AttributeError: 'EnhancedDirectoryTree' object has no attribute '_id'. Did you mean: 'id'? FAILED tests/test_snapshots.py::test_paint_open_dialog[dark_unicode] - AttributeError: 'EnhancedDirectoryTree' object has no attribute '_id'. Did you mean: 'id'? FAILED tests/test_snapshots.py::test_paint_open_dialog[light_ascii] - AttributeError: 'EnhancedDirectoryTree' object has no attribute '_id'. Did you mean: 'id'? FAILED tests/test_snapshots.py::test_paint_open_dialog[dark_ascii] - AttributeError: 'EnhancedDirectoryTree' object has no attribute '_id'. Did you mean: 'id'? FAILED tests/test_snapshots.py::test_paint_save_dialog[light_unicode] - AttributeError: 'EnhancedDirectoryTree' object has no attribute '_id'. Did you mean: 'id'? FAILED tests/test_snapshots.py::test_paint_save_dialog[dark_unicode] - AttributeError: 'EnhancedDirectoryTree' object has no attribute '_id'. Did you mean: 'id'? FAILED tests/test_snapshots.py::test_paint_save_dialog[light_ascii] - AttributeError: 'EnhancedDirectoryTree' object has no attribute '_id'. Did you mean: 'id'? FAILED tests/test_snapshots.py::test_paint_save_dialog[dark_ascii] - AttributeError: 'EnhancedDirectoryTree' object has no attribute '_id'. Did you mean: 'id'? ========================== 8 failed, 56 passed, 1 xfailed, 1 warning in 152.86s (0:02:32) ========================== It worked when running in debug, but not when running normally.
2023-09-13 01:38:08 +03:00
"pyfakefs",
"pyfiglet",
2023-06-04 20:25:55 +03:00
"Pylance",
"pyobjc",
"pyperclip",
2023-04-11 20:21:19 +03:00
"pypixelart",
2023-04-22 09:27:43 +03:00
"pyright",
2023-09-07 22:14:07 +03:00
"pytest",
"pyxdg",
2023-05-27 01:20:32 +03:00
"qualname",
"rasterization",
"razorkwin",
"rects",
2023-05-02 02:23:57 +03:00
"renderable",
"rmam",
2023-06-04 20:25:55 +03:00
"rmate",
"rubymine",
"screeninfo",
2023-09-06 03:11:32 +03:00
"scrollbars",
2023-09-17 04:42:29 +03:00
"sdist",
"SETDESKWALLPAPER",
"setterm",
"setuptools",
2023-04-19 03:43:51 +03:00
"Shft",
2023-07-24 22:10:54 +03:00
"sixel",
"skeuomorphism",
2023-06-04 20:25:55 +03:00
"skool",
"smam",
2023-05-13 07:05:51 +03:00
"Smushing",
2023-04-11 23:22:00 +03:00
"stransi",
"STRINGTABLE",
"strxfrm",
2023-06-04 20:25:55 +03:00
"subl",
"tasklist",
2023-09-17 04:42:29 +03:00
"testpypi",
"textconv",
"thumbnailer",
"Thunar",
"tkinter",
"tlaplus",
"tput",
2023-05-02 19:33:48 +03:00
"truecolor",
"tspan",
"tspans",
"txtpnt",
"ubuntustudio",
"ufeff",
"undecorate",
2023-04-28 22:27:23 +03:00
"undoable",
2023-04-13 05:42:48 +03:00
"undos",
2023-04-19 03:43:51 +03:00
"ustom",
2023-06-08 10:12:58 +03:00
"venv",
2023-05-15 06:20:18 +03:00
"vkey",
2023-06-04 20:25:55 +03:00
"webp",
"webstorm",
"windowmaker",
"wmaker",
"wmsetbg",
2023-06-27 22:33:56 +03:00
"wstorm",
"xfce",
"xfconf",
"xfdesktop",
2023-06-27 22:33:56 +03:00
"xgettext",
"xpot",
"xubuntu"
2023-04-10 23:51:39 +03:00
]
}