├── .github └── workflows │ ├── fuzz-lightyear-build.yml │ └── pypi.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── docs └── logo.png ├── fuzz_lightyear ├── __init__.py ├── __main__.py ├── config.py ├── datastore.py ├── discovery.py ├── exceptions.py ├── fuzzer.py ├── generator.py ├── main.py ├── output │ ├── __init__.py │ ├── color.py │ ├── formatter.py │ ├── interface.py │ ├── logging.py │ └── util.py ├── plugins │ ├── __init__.py │ ├── base.py │ └── idor.py ├── request.py ├── response.py ├── result.py ├── runner.py ├── settings.py ├── supplements │ ├── __init__.py │ ├── abstraction.py │ ├── auth.py │ ├── exclude.py │ ├── factory.py │ ├── hooks.py │ ├── include.py │ ├── request.py │ └── setup.py ├── usage.py ├── util.py └── version.py ├── jenkins.yaml ├── mypy.ini ├── pytest.ini ├── requirements-dev-minimal.txt ├── requirements-dev.txt ├── requirements-minimal.txt ├── scripts └── uploader.sh ├── setup.py ├── test_data ├── module.py └── nested │ ├── another_fixture.py │ └── directory │ └── fixtures.py ├── testing ├── __init__.py ├── mock_server.py ├── util.py └── vulnerable_app │ ├── __init__.py │ ├── __main__.py │ ├── app.py │ ├── core │ ├── __init__.py │ ├── auth.py │ ├── database.py │ ├── extensions.py │ └── routes.py │ ├── logic │ ├── __init__.py │ └── user.py │ ├── main.py │ ├── models │ ├── __init__.py │ ├── api_key.py │ └── widget.py │ ├── parsers │ ├── __init__.py │ ├── arrays.py │ ├── basic.py │ └── error.py │ ├── util.py │ └── views │ ├── __init__.py │ ├── basic.py │ ├── complex.py │ ├── constant.py │ ├── location.py │ ├── models │ ├── __init__.py │ ├── basic.py │ ├── database.py │ └── nested.py │ ├── sequence.py │ ├── types.py │ └── user.py ├── tests ├── conftest.py ├── integration │ ├── client_test.py │ ├── conftest.py │ ├── fuzzer_test.py │ ├── generator_test.py │ ├── main_test.py │ ├── plugins │ │ ├── conftest.py │ │ └── idor_test.py │ ├── request_test.py │ ├── result_test.py │ ├── runner_test.py │ └── supplements │ │ └── factory_integration_test.py └── unit │ ├── datastore_test.py │ ├── discovery_test.py │ ├── output │ └── formatter_test.py │ ├── supplements │ ├── auth_test.py │ ├── exclude_test.py │ ├── factory_supplements_test.py │ ├── include_test.py │ ├── request_supplements_test.py │ └── setup_supplements_test.py │ └── util_test.py └── tox.ini /.github/workflows/fuzz-lightyear-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/.github/workflows/fuzz-lightyear-build.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/README.md -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/docs/logo.png -------------------------------------------------------------------------------- /fuzz_lightyear/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/__init__.py -------------------------------------------------------------------------------- /fuzz_lightyear/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/__main__.py -------------------------------------------------------------------------------- /fuzz_lightyear/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/config.py -------------------------------------------------------------------------------- /fuzz_lightyear/datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/datastore.py -------------------------------------------------------------------------------- /fuzz_lightyear/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/discovery.py -------------------------------------------------------------------------------- /fuzz_lightyear/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/exceptions.py -------------------------------------------------------------------------------- /fuzz_lightyear/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/fuzzer.py -------------------------------------------------------------------------------- /fuzz_lightyear/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/generator.py -------------------------------------------------------------------------------- /fuzz_lightyear/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/main.py -------------------------------------------------------------------------------- /fuzz_lightyear/output/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fuzz_lightyear/output/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/output/color.py -------------------------------------------------------------------------------- /fuzz_lightyear/output/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/output/formatter.py -------------------------------------------------------------------------------- /fuzz_lightyear/output/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/output/interface.py -------------------------------------------------------------------------------- /fuzz_lightyear/output/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/output/logging.py -------------------------------------------------------------------------------- /fuzz_lightyear/output/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/output/util.py -------------------------------------------------------------------------------- /fuzz_lightyear/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/plugins/__init__.py -------------------------------------------------------------------------------- /fuzz_lightyear/plugins/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/plugins/base.py -------------------------------------------------------------------------------- /fuzz_lightyear/plugins/idor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/plugins/idor.py -------------------------------------------------------------------------------- /fuzz_lightyear/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/request.py -------------------------------------------------------------------------------- /fuzz_lightyear/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/response.py -------------------------------------------------------------------------------- /fuzz_lightyear/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/result.py -------------------------------------------------------------------------------- /fuzz_lightyear/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/runner.py -------------------------------------------------------------------------------- /fuzz_lightyear/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/settings.py -------------------------------------------------------------------------------- /fuzz_lightyear/supplements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fuzz_lightyear/supplements/abstraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/supplements/abstraction.py -------------------------------------------------------------------------------- /fuzz_lightyear/supplements/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/supplements/auth.py -------------------------------------------------------------------------------- /fuzz_lightyear/supplements/exclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/supplements/exclude.py -------------------------------------------------------------------------------- /fuzz_lightyear/supplements/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/supplements/factory.py -------------------------------------------------------------------------------- /fuzz_lightyear/supplements/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/supplements/hooks.py -------------------------------------------------------------------------------- /fuzz_lightyear/supplements/include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/supplements/include.py -------------------------------------------------------------------------------- /fuzz_lightyear/supplements/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/supplements/request.py -------------------------------------------------------------------------------- /fuzz_lightyear/supplements/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/supplements/setup.py -------------------------------------------------------------------------------- /fuzz_lightyear/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/usage.py -------------------------------------------------------------------------------- /fuzz_lightyear/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/fuzz_lightyear/util.py -------------------------------------------------------------------------------- /fuzz_lightyear/version.py: -------------------------------------------------------------------------------- 1 | VERSION = '0.0.11' 2 | -------------------------------------------------------------------------------- /jenkins.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | type: python 3 | -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/mypy.ini -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-dev-minimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/requirements-dev-minimal.txt -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-minimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/requirements-minimal.txt -------------------------------------------------------------------------------- /scripts/uploader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/scripts/uploader.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/setup.py -------------------------------------------------------------------------------- /test_data/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/test_data/module.py -------------------------------------------------------------------------------- /test_data/nested/another_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/test_data/nested/another_fixture.py -------------------------------------------------------------------------------- /test_data/nested/directory/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/test_data/nested/directory/fixtures.py -------------------------------------------------------------------------------- /testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/mock_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/mock_server.py -------------------------------------------------------------------------------- /testing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/util.py -------------------------------------------------------------------------------- /testing/vulnerable_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/vulnerable_app/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/__main__.py -------------------------------------------------------------------------------- /testing/vulnerable_app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/app.py -------------------------------------------------------------------------------- /testing/vulnerable_app/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/vulnerable_app/core/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/core/auth.py -------------------------------------------------------------------------------- /testing/vulnerable_app/core/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/core/database.py -------------------------------------------------------------------------------- /testing/vulnerable_app/core/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/core/extensions.py -------------------------------------------------------------------------------- /testing/vulnerable_app/core/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/core/routes.py -------------------------------------------------------------------------------- /testing/vulnerable_app/logic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/vulnerable_app/logic/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/logic/user.py -------------------------------------------------------------------------------- /testing/vulnerable_app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/main.py -------------------------------------------------------------------------------- /testing/vulnerable_app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/vulnerable_app/models/api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/models/api_key.py -------------------------------------------------------------------------------- /testing/vulnerable_app/models/widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/models/widget.py -------------------------------------------------------------------------------- /testing/vulnerable_app/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/vulnerable_app/parsers/arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/parsers/arrays.py -------------------------------------------------------------------------------- /testing/vulnerable_app/parsers/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/parsers/basic.py -------------------------------------------------------------------------------- /testing/vulnerable_app/parsers/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/parsers/error.py -------------------------------------------------------------------------------- /testing/vulnerable_app/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/util.py -------------------------------------------------------------------------------- /testing/vulnerable_app/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/views/__init__.py -------------------------------------------------------------------------------- /testing/vulnerable_app/views/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/views/basic.py -------------------------------------------------------------------------------- /testing/vulnerable_app/views/complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/views/complex.py -------------------------------------------------------------------------------- /testing/vulnerable_app/views/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/views/constant.py -------------------------------------------------------------------------------- /testing/vulnerable_app/views/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/views/location.py -------------------------------------------------------------------------------- /testing/vulnerable_app/views/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/views/models/__init__.py -------------------------------------------------------------------------------- /testing/vulnerable_app/views/models/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/views/models/basic.py -------------------------------------------------------------------------------- /testing/vulnerable_app/views/models/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/views/models/database.py -------------------------------------------------------------------------------- /testing/vulnerable_app/views/models/nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/views/models/nested.py -------------------------------------------------------------------------------- /testing/vulnerable_app/views/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/views/sequence.py -------------------------------------------------------------------------------- /testing/vulnerable_app/views/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/views/types.py -------------------------------------------------------------------------------- /testing/vulnerable_app/views/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/testing/vulnerable_app/views/user.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration/client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/integration/client_test.py -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/fuzzer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/integration/fuzzer_test.py -------------------------------------------------------------------------------- /tests/integration/generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/integration/generator_test.py -------------------------------------------------------------------------------- /tests/integration/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/integration/main_test.py -------------------------------------------------------------------------------- /tests/integration/plugins/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/integration/plugins/conftest.py -------------------------------------------------------------------------------- /tests/integration/plugins/idor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/integration/plugins/idor_test.py -------------------------------------------------------------------------------- /tests/integration/request_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/integration/request_test.py -------------------------------------------------------------------------------- /tests/integration/result_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/integration/result_test.py -------------------------------------------------------------------------------- /tests/integration/runner_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/integration/runner_test.py -------------------------------------------------------------------------------- /tests/integration/supplements/factory_integration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/integration/supplements/factory_integration_test.py -------------------------------------------------------------------------------- /tests/unit/datastore_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/unit/datastore_test.py -------------------------------------------------------------------------------- /tests/unit/discovery_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/unit/discovery_test.py -------------------------------------------------------------------------------- /tests/unit/output/formatter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/unit/output/formatter_test.py -------------------------------------------------------------------------------- /tests/unit/supplements/auth_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/unit/supplements/auth_test.py -------------------------------------------------------------------------------- /tests/unit/supplements/exclude_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/unit/supplements/exclude_test.py -------------------------------------------------------------------------------- /tests/unit/supplements/factory_supplements_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/unit/supplements/factory_supplements_test.py -------------------------------------------------------------------------------- /tests/unit/supplements/include_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/unit/supplements/include_test.py -------------------------------------------------------------------------------- /tests/unit/supplements/request_supplements_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/unit/supplements/request_supplements_test.py -------------------------------------------------------------------------------- /tests/unit/supplements/setup_supplements_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tests/unit/supplements/setup_supplements_test.py -------------------------------------------------------------------------------- /tests/unit/util_test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yelp/fuzz-lightyear/HEAD/tox.ini --------------------------------------------------------------------------------