Kludge: ignore --snapshot-update argument

This commit is contained in:
Isaiah Odhner 2023-09-07 00:38:20 -04:00
parent f1da33ca8e
commit 95256a411a
2 changed files with 4 additions and 0 deletions

View File

@ -88,6 +88,8 @@ development options:
outdated errors
--restart-on-changes Restart the app when the source code is changed
--recode-samples Open and save each file in samples/, for testing
--snapshot-update KLUDGE: IGNORE THIS ARGUMENT INTENDED FOR pytest-
textual-snapshot
```
### Keyboard Shortcuts

View File

@ -25,6 +25,8 @@ dev_options.add_argument('--inspect-layout', action='store_true', help='Enables
dev_options.add_argument('--clear-screen', action='store_true', help='Clear the screen before starting, to avoid seeing outdated errors')
dev_options.add_argument('--restart-on-changes', action='store_true', help='Restart the app when the source code is changed')
dev_options.add_argument('--recode-samples', action='store_true', help='Open and save each file in samples/, for testing')
# TODO: don't parse arguments when running tests!
dev_options.add_argument('--snapshot-update', action='store_true', help='KLUDGE: IGNORE THIS ARGUMENT INTENDED FOR pytest-textual-snapshot')
parser.add_argument('filename', nargs='?', default=None, help='Path to a file to open. File will be created if it doesn\'t exist.')