├── .gitignore ├── Dockerfile ├── README.md ├── framework_example ├── __init__.py ├── core │ ├── __init__.py │ ├── asserts.py │ ├── base_test.py │ ├── logger.py │ └── my_request.py ├── environment.py └── tests │ ├── test_auth_user.py │ ├── test_create_user.py │ └── test_unauth_user.py ├── pytest_examples ├── __init__.py ├── test_basic.py └── test_with_setup.py ├── requests_examples ├── __init__.py └── request_playground.py ├── requirements.txt └── support ├── __init__.py ├── assertions.py ├── environment.py └── logger.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/README.md -------------------------------------------------------------------------------- /framework_example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework_example/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework_example/core/asserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/framework_example/core/asserts.py -------------------------------------------------------------------------------- /framework_example/core/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/framework_example/core/base_test.py -------------------------------------------------------------------------------- /framework_example/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/framework_example/core/logger.py -------------------------------------------------------------------------------- /framework_example/core/my_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/framework_example/core/my_request.py -------------------------------------------------------------------------------- /framework_example/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/framework_example/environment.py -------------------------------------------------------------------------------- /framework_example/tests/test_auth_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/framework_example/tests/test_auth_user.py -------------------------------------------------------------------------------- /framework_example/tests/test_create_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/framework_example/tests/test_create_user.py -------------------------------------------------------------------------------- /framework_example/tests/test_unauth_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/framework_example/tests/test_unauth_user.py -------------------------------------------------------------------------------- /pytest_examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest_examples/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/pytest_examples/test_basic.py -------------------------------------------------------------------------------- /pytest_examples/test_with_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/pytest_examples/test_with_setup.py -------------------------------------------------------------------------------- /requests_examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requests_examples/request_playground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/requests_examples/request_playground.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/requirements.txt -------------------------------------------------------------------------------- /support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/support/assertions.py -------------------------------------------------------------------------------- /support/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/support/environment.py -------------------------------------------------------------------------------- /support/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/la-lev/python-api-automation/HEAD/support/logger.py --------------------------------------------------------------------------------