├── .gitignore ├── .idea └── vcs.xml ├── README.md ├── conftest.py ├── pytest.ini ├── requirements.txt ├── simple_config.ini └── tests ├── __init__.py ├── create_issue_test.py ├── draft ├── __init__.py ├── create_issue_raw_code_test.py └── login_test.py └── utils ├── __init__.py ├── api.py ├── http_manager.py └── json_fixture.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archick12/pyTestRequests/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archick12/pyTestRequests/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archick12/pyTestRequests/HEAD/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archick12/pyTestRequests/HEAD/conftest.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archick12/pyTestRequests/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archick12/pyTestRequests/HEAD/requirements.txt -------------------------------------------------------------------------------- /simple_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archick12/pyTestRequests/HEAD/simple_config.ini -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/create_issue_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archick12/pyTestRequests/HEAD/tests/create_issue_test.py -------------------------------------------------------------------------------- /tests/draft/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/draft/create_issue_raw_code_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archick12/pyTestRequests/HEAD/tests/draft/create_issue_raw_code_test.py -------------------------------------------------------------------------------- /tests/draft/login_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archick12/pyTestRequests/HEAD/tests/draft/login_test.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archick12/pyTestRequests/HEAD/tests/utils/api.py -------------------------------------------------------------------------------- /tests/utils/http_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archick12/pyTestRequests/HEAD/tests/utils/http_manager.py -------------------------------------------------------------------------------- /tests/utils/json_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archick12/pyTestRequests/HEAD/tests/utils/json_fixture.py --------------------------------------------------------------------------------