Created
June 11, 2022 01:43
-
-
Save Wind010/0ddfae9b26c7d49e47d2df81e7f893ae to your computer and use it in GitHub Desktop.
VS Code Python Pytest command line args settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "cSpell.ignoreWords": [ | |
| "assertpy", | |
| "backfilling", | |
| "checkpointed", | |
| "checkpointing", | |
| "dagrr", | |
| "databricks", | |
| "dataframe", | |
| "dataframes", | |
| "gsit", | |
| "prechecked", | |
| "produceable", | |
| "pyspark", | |
| "repivot", | |
| "sgfilter", | |
| "sgname", | |
| "sgproduceablefrom", | |
| "subfilter", | |
| "unioning", | |
| "unpivot" | |
| ], | |
| "cSpell.words": [ | |
| "appriss", | |
| "chkpt", | |
| "ddca", | |
| "dedupe", | |
| "deduping", | |
| "gsitsource", | |
| "jsonl", | |
| "lkup", | |
| "noopexecutor", | |
| "rawdatatoframeconversion", | |
| "requireds", | |
| "rtype", | |
| "sdagrr", | |
| "sganchorable", | |
| "sgcompose", | |
| "sgeodconditional", | |
| "sgnofilter", | |
| "sgnotin", | |
| "sgplan", | |
| "sgrequiredfor", | |
| "sgresumeable", | |
| "sgselect", | |
| "sgunion", | |
| "sgwriteable", | |
| "subargs", | |
| "unpivoted" | |
| ], | |
| "files.exclude": { | |
| "**/build": true, | |
| "**/dist": true | |
| }, | |
| "python.testing.autoTestDiscoverOnSaveEnabled": true, | |
| "python.testing.unittestEnabled": false, | |
| "python.testing.pytestEnabled": true, | |
| "python.testing.pytestArgs": [ | |
| "unit_test", | |
| "--capture=tee-sys", | |
| "--verbose", | |
| "-p", | |
| "no:warnings" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment