├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── pytest_tornado ├── __init__.py └── plugin.py ├── setup.cfg ├── setup.py └── test ├── conftest.py ├── create_cert.py ├── test_async.py ├── test_async_await.py ├── test_fixtures.py ├── test_https_support.py ├── test_param.py └── test_server.py /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | 3 | prune test 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/README.rst -------------------------------------------------------------------------------- /pytest_tornado/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest_tornado/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/pytest_tornado/plugin.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/setup.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/create_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/test/create_cert.py -------------------------------------------------------------------------------- /test/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/test/test_async.py -------------------------------------------------------------------------------- /test/test_async_await.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/test/test_async_await.py -------------------------------------------------------------------------------- /test/test_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/test/test_fixtures.py -------------------------------------------------------------------------------- /test/test_https_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/test/test_https_support.py -------------------------------------------------------------------------------- /test/test_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/test/test_param.py -------------------------------------------------------------------------------- /test/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugeniy/pytest-tornado/HEAD/test/test_server.py --------------------------------------------------------------------------------