From 9df3df24ec0315e719cc0ad902454b956fc69602 Mon Sep 17 00:00:00 2001 From: Asher Norland Date: Sun, 28 Nov 2021 19:27:00 -0500 Subject: [PATCH 1/3] Fix Publish Workflow Path --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 72d8f29..c8c96d0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,4 +5,4 @@ on: jobs: call_synodic_workflow: - uses: synodic-software/.github/workflows/publish.yml@stable + uses: synodic-software/.github/.github/workflows/publish.yml@stable From 07cd5a2b48f45421d718f01d59fd8c7605ec5a8a Mon Sep 17 00:00:00 2001 From: Asher Norland Date: Sat, 4 Dec 2021 13:22:57 -0500 Subject: [PATCH 2/3] Update Gitignore and Settings --- .gitignore | 8 +++++++- .vscode/settings.json | 12 ++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 529862f..01e00ef 100644 --- a/.gitignore +++ b/.gitignore @@ -10,8 +10,14 @@ TestResults/ *.pyc dist/ .vs/ -.vscode/ #PDM .pdm.toml __pypackages__/ + +#VisualStudioCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..eb0a85b --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,12 @@ +{ + "python.linting.enabled": true, + "python.linting.flake8Enabled": false, + "python.linting.pylintEnabled": true, + "python.testing.pytestArgs": [ + "tests" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true, + "python.autoComplete.extraPaths": ["__pypackages__//lib"], + "python.analysis.extraPaths": ["__pypackages__//lib"] +} \ No newline at end of file From 31c26ce5f4beab1f02b88918c56a4fd35d76d873 Mon Sep 17 00:00:00 2001 From: Asher Norland Date: Sat, 4 Dec 2021 14:37:11 -0500 Subject: [PATCH 3/3] Update Draft Workflow Name --- .github/workflows/draft.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/draft.yml b/.github/workflows/draft.yml index 7046fe5..9d8dab6 100644 --- a/.github/workflows/draft.yml +++ b/.github/workflows/draft.yml @@ -1,4 +1,4 @@ -name: Publish +name: Draft on: push: branches: