Skip to content

Instantly share code, notes, and snippets.

@Wind010
Created June 11, 2022 01:43
Show Gist options
  • Select an option

  • Save Wind010/0ddfae9b26c7d49e47d2df81e7f893ae to your computer and use it in GitHub Desktop.

Select an option

Save Wind010/0ddfae9b26c7d49e47d2df81e7f893ae to your computer and use it in GitHub Desktop.
VS Code Python Pytest command line args settings
{
"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