├── .coveragerc ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CHANGES.rst ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── api │ └── index.rst ├── conf.py └── index.rst ├── pytest_cloud ├── __init__.py ├── patches.py ├── plugin.py └── rsync.py ├── requirements-testing.txt ├── setup.py ├── tests ├── __init__.py ├── conftest.py └── test_plugin.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = tests/* 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/docs/index.rst -------------------------------------------------------------------------------- /pytest_cloud/__init__.py: -------------------------------------------------------------------------------- 1 | """PyTest Cloud.""" 2 | 3 | __version__ = "5.0.3" 4 | -------------------------------------------------------------------------------- /pytest_cloud/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/pytest_cloud/patches.py -------------------------------------------------------------------------------- /pytest_cloud/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/pytest_cloud/plugin.py -------------------------------------------------------------------------------- /pytest_cloud/rsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/pytest_cloud/rsync.py -------------------------------------------------------------------------------- /requirements-testing.txt: -------------------------------------------------------------------------------- 1 | coverage 2 | mock 3 | pytest-black 4 | astroid -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests.""" 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/tests/test_plugin.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-cloud/HEAD/tox.ini --------------------------------------------------------------------------------