├── .gitignore ├── .python-version ├── .travis.yml ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── async_fixture.rst ├── development.rst ├── example.rst ├── fixtures.rst ├── index.rst ├── installation.rst ├── make.bat ├── reference.rst └── tips.rst ├── poetry.lock ├── pyproject.toml ├── pytest_sanic ├── __init__.py ├── plugin.py └── utils.py ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── test_async.py ├── test_client.py ├── test_client_websocket.py ├── test_fixture.py ├── test_server.py └── test_simple_fixtures.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.8.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/async_fixture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/docs/async_fixture.rst -------------------------------------------------------------------------------- /docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/docs/development.rst -------------------------------------------------------------------------------- /docs/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/docs/example.rst -------------------------------------------------------------------------------- /docs/fixtures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/docs/fixtures.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/docs/reference.rst -------------------------------------------------------------------------------- /docs/tips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/docs/tips.rst -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_sanic/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.9.1' 2 | -------------------------------------------------------------------------------- /pytest_sanic/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/pytest_sanic/plugin.py -------------------------------------------------------------------------------- /pytest_sanic/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/pytest_sanic/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/tests/test_async.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_client_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/tests/test_client_websocket.py -------------------------------------------------------------------------------- /tests/test_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/tests/test_fixture.py -------------------------------------------------------------------------------- /tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/tests/test_server.py -------------------------------------------------------------------------------- /tests/test_simple_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunstanford/pytest-sanic/HEAD/tests/test_simple_fixtures.py --------------------------------------------------------------------------------