From e90bd24ebe1fab6a84645c3fbea0ad88f09cad7b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 30 Mar 2024 20:02:39 -0400 Subject: [PATCH] Update test.yaml, add Pipfile, and delete httpbin.py --- .github/workflows/test.yaml | 2 +- Pipfile | 22 ++++++++++++++++++++++ examples/httpbin.py | 0 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 Pipfile delete mode 100644 examples/httpbin.py diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 141139b..309ea79 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,7 +1,7 @@ # This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions -name: pytest +name: tests on: push: diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..e6aa522 --- /dev/null +++ b/Pipfile @@ -0,0 +1,22 @@ +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +responder = {file = ".", editable = true} +pytest = "*" +pytest-mock = "*" +twine = "*" +sphinx = "*" +marshmallow = "*" +pydantic = "*" +pytest-cov = "*" +ruff = "*" +pre-commit = "*" +httpx = "*" + +[dev-packages] + +[requires] +python_version = "3.11" diff --git a/examples/httpbin.py b/examples/httpbin.py deleted file mode 100644 index e69de29..0000000