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