-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #234 from WebexCommunity/dev/v2/cmlccie
New WebexPythonSDK v2!
- Loading branch information
Showing
157 changed files
with
3,002 additions
and
6,511 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"recommendations": [ | ||
"charliermarsh.ruff", | ||
"github.vscode-github-actions", | ||
"github.vscode-pull-request-github", | ||
"ms-python.debugpy", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"streetsidesoftware.code-spell-checker" | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"python.testing.unittestEnabled": false, | ||
"python.testing.pytestEnabled": true, | ||
"python.testing.pytestArgs": ["-s", "-m", "not slow and not manual"], | ||
"cSpell.words": ["ciscosparkapi", "webexpythonsdk", "webexteamssdk"] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
.PHONY: clean setup update format lint build tests tests-manual tests-slow tests-all docs | ||
|
||
clean: | ||
find . -name '*.pyc' -exec rm -f {} + | ||
find . -name '*.pyo' -exec rm -f {} + | ||
find . -name '*~' -exec rm -f {} + | ||
find . -name '__pycache__' -exec rm -fr {} + | ||
rm -rf build/ | ||
rm -rf dist/ | ||
rm -rf .cache/ | ||
rm -f .coverage | ||
rm -rf .pytest_cache/ | ||
rm -rf docs/_build/* | ||
|
||
setup: | ||
-poetry env remove --all | ||
poetry install | ||
|
||
update: | ||
poetry update | ||
|
||
format: | ||
poetry run ruff format . | ||
|
||
lint: | ||
poetry run ruff check . | ||
|
||
build: | ||
poetry build | ||
|
||
tests: | ||
poetry run pytest -s -m "not slow and not manual" | ||
|
||
tests-manual: | ||
poetry run pytest -s -m "manual" | ||
|
||
tests-slow: | ||
poetry run pytest -s -m "slow and not manual" | ||
|
||
tests-all: | ||
poetry run pytest | ||
|
||
docs: | ||
$(MAKE) -C docs html |
Oops, something went wrong.