├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── RELEASING.md ├── appveyor.yml ├── percy ├── __init__.py ├── client.py ├── config.py ├── connection.py ├── environment.py ├── errors.py ├── resource.py ├── resource_loader.py ├── runner.py ├── user_agent.py └── utils.py ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── fixtures │ ├── build_response.json │ └── snapshot_response.json ├── test_client.py ├── test_config.py ├── test_connection.py ├── test_environment.py ├── test_resource_loader.py ├── test_runner.py ├── test_user_agent.py ├── test_utils.py └── testdata │ └── static │ ├── app.js │ ├── images │ ├── jellybeans.png │ ├── large-file-skipped.png │ └── logo.png │ └── styles.css └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/RELEASING.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/appveyor.yml -------------------------------------------------------------------------------- /percy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/percy/__init__.py -------------------------------------------------------------------------------- /percy/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/percy/client.py -------------------------------------------------------------------------------- /percy/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/percy/config.py -------------------------------------------------------------------------------- /percy/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/percy/connection.py -------------------------------------------------------------------------------- /percy/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/percy/environment.py -------------------------------------------------------------------------------- /percy/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/percy/errors.py -------------------------------------------------------------------------------- /percy/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/percy/resource.py -------------------------------------------------------------------------------- /percy/resource_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/percy/resource_loader.py -------------------------------------------------------------------------------- /percy/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/percy/runner.py -------------------------------------------------------------------------------- /percy/user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/percy/user_agent.py -------------------------------------------------------------------------------- /percy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/percy/utils.py -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/fixtures/build_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tests/fixtures/build_response.json -------------------------------------------------------------------------------- /tests/fixtures/snapshot_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tests/fixtures/snapshot_response.json -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tests/test_connection.py -------------------------------------------------------------------------------- /tests/test_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tests/test_environment.py -------------------------------------------------------------------------------- /tests/test_resource_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tests/test_resource_loader.py -------------------------------------------------------------------------------- /tests/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tests/test_runner.py -------------------------------------------------------------------------------- /tests/test_user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tests/test_user_agent.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/testdata/static/app.js: -------------------------------------------------------------------------------- 1 | function() { 2 | 3 | } -------------------------------------------------------------------------------- /tests/testdata/static/images/jellybeans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tests/testdata/static/images/jellybeans.png -------------------------------------------------------------------------------- /tests/testdata/static/images/large-file-skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tests/testdata/static/images/large-file-skipped.png -------------------------------------------------------------------------------- /tests/testdata/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tests/testdata/static/images/logo.png -------------------------------------------------------------------------------- /tests/testdata/static/styles.css: -------------------------------------------------------------------------------- 1 | .body {} -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percy/python-percy-client/HEAD/tox.ini --------------------------------------------------------------------------------