├── .gitignore ├── README.md ├── apis ├── __init__.py └── data_mock_api.py ├── common ├── __init__.py ├── api.py ├── json_processor.py ├── proxy_data_jenkins │ ├── __init__.py │ ├── proxy_to_pytest.py │ ├── proxy_to_pytest_jenkins.py │ └── proxy_to_requests_jenkins.py ├── rap_to_pytestapi │ ├── __init__.py │ ├── login_rag.py │ ├── rap_to_api.py │ └── rap_to_api_1.py ├── script │ ├── __init__.py │ └── generate_script.py └── utils.py ├── conftest.py ├── data └── data_count │ ├── __init__.py │ └── data_count.py ├── db └── __init__.py ├── requirements.txt ├── test_suites └── test_data_count │ ├── .pytest_cache │ └── v │ │ └── cache │ │ ├── lastfailed │ │ ├── nodeids │ │ └── stepwise │ ├── __init__.py │ └── test_data_count.py ├── tools ├── __init__.py ├── get_error_link_to_report_basic.py ├── get_jmeter_report.py ├── proxy_data_jenkins │ ├── __init__.py │ ├── proxy_to_pytest.py │ ├── proxy_to_pytest_jenkins.py │ └── proxy_to_requests_jenkins.py ├── rap_to_pytestapi │ ├── __init__.py │ ├── login_rag.py │ ├── rap_to_api.py │ └── rap_to_api_1.py └── swagger_api │ ├── __init__.py │ ├── generate_script.py │ ├── swagger_pytest_api.py │ └── swagger_pytest_api_jenkins_new.py └── utils ├── __init__.py └── cfg.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/README.md -------------------------------------------------------------------------------- /apis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apis/data_mock_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/apis/data_mock_api.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/common/api.py -------------------------------------------------------------------------------- /common/json_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/common/json_processor.py -------------------------------------------------------------------------------- /common/proxy_data_jenkins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/common/proxy_data_jenkins/__init__.py -------------------------------------------------------------------------------- /common/proxy_data_jenkins/proxy_to_pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/common/proxy_data_jenkins/proxy_to_pytest.py -------------------------------------------------------------------------------- /common/proxy_data_jenkins/proxy_to_pytest_jenkins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/common/proxy_data_jenkins/proxy_to_pytest_jenkins.py -------------------------------------------------------------------------------- /common/proxy_data_jenkins/proxy_to_requests_jenkins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/common/proxy_data_jenkins/proxy_to_requests_jenkins.py -------------------------------------------------------------------------------- /common/rap_to_pytestapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/rap_to_pytestapi/login_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/common/rap_to_pytestapi/login_rag.py -------------------------------------------------------------------------------- /common/rap_to_pytestapi/rap_to_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/common/rap_to_pytestapi/rap_to_api.py -------------------------------------------------------------------------------- /common/rap_to_pytestapi/rap_to_api_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/common/rap_to_pytestapi/rap_to_api_1.py -------------------------------------------------------------------------------- /common/script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/script/generate_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/common/script/generate_script.py -------------------------------------------------------------------------------- /common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/common/utils.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/conftest.py -------------------------------------------------------------------------------- /data/data_count/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/data/data_count/__init__.py -------------------------------------------------------------------------------- /data/data_count/data_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/data/data_count/data_count.py -------------------------------------------------------------------------------- /db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_suites/test_data_count/.pytest_cache/v/cache/lastfailed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/test_suites/test_data_count/.pytest_cache/v/cache/lastfailed -------------------------------------------------------------------------------- /test_suites/test_data_count/.pytest_cache/v/cache/nodeids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/test_suites/test_data_count/.pytest_cache/v/cache/nodeids -------------------------------------------------------------------------------- /test_suites/test_data_count/.pytest_cache/v/cache/stepwise: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test_suites/test_data_count/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/test_suites/test_data_count/__init__.py -------------------------------------------------------------------------------- /test_suites/test_data_count/test_data_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/test_suites/test_data_count/test_data_count.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/get_error_link_to_report_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/tools/get_error_link_to_report_basic.py -------------------------------------------------------------------------------- /tools/get_jmeter_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/tools/get_jmeter_report.py -------------------------------------------------------------------------------- /tools/proxy_data_jenkins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/tools/proxy_data_jenkins/__init__.py -------------------------------------------------------------------------------- /tools/proxy_data_jenkins/proxy_to_pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/tools/proxy_data_jenkins/proxy_to_pytest.py -------------------------------------------------------------------------------- /tools/proxy_data_jenkins/proxy_to_pytest_jenkins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/tools/proxy_data_jenkins/proxy_to_pytest_jenkins.py -------------------------------------------------------------------------------- /tools/proxy_data_jenkins/proxy_to_requests_jenkins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/tools/proxy_data_jenkins/proxy_to_requests_jenkins.py -------------------------------------------------------------------------------- /tools/rap_to_pytestapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/rap_to_pytestapi/login_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/tools/rap_to_pytestapi/login_rag.py -------------------------------------------------------------------------------- /tools/rap_to_pytestapi/rap_to_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/tools/rap_to_pytestapi/rap_to_api.py -------------------------------------------------------------------------------- /tools/rap_to_pytestapi/rap_to_api_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/tools/rap_to_pytestapi/rap_to_api_1.py -------------------------------------------------------------------------------- /tools/swagger_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/swagger_api/generate_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/tools/swagger_api/generate_script.py -------------------------------------------------------------------------------- /tools/swagger_api/swagger_pytest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/tools/swagger_api/swagger_pytest_api.py -------------------------------------------------------------------------------- /tools/swagger_api/swagger_pytest_api_jenkins_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/tools/swagger_api/swagger_pytest_api_jenkins_new.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # coding=utf-8 3 | 4 | """ 5 | 该包放置自己的工具类 6 | """ -------------------------------------------------------------------------------- /utils/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvjj1989/pytest_interface/HEAD/utils/cfg.py --------------------------------------------------------------------------------