基本信息
源码名称:pytest api自动化框架
源码大小:2.41M
文件格式:.rar
开发语言:Python
更新时间:2023-07-19
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
pytest api自动化框架

.
├── pytest api自动化框架_api.rar
└── robo-Mobile-API-Test
    ├── README.md
    ├── config
    │   └── env.conf
    ├── helpers
    │   ├── __init__.py
    │   ├── __pycache__
    │   │   ├── __init__.cpython-36.pyc
    │   │   ├── checkers.cpython-36.pyc
    │   │   ├── config.cpython-36.pyc
    │   │   ├── database.cpython-36.pyc
    │   │   ├── env.cpython-36.pyc
    │   │   └── logger.cpython-36.pyc
    │   ├── checkers.py
    │   ├── config.py
    │   ├── database.py
    │   ├── env.py
    │   └── logger.py
    ├── logs
    │   ├── 2020-06-05.log
    │   ├── 2020-06-06.log
    │   ├── 2020-06-07.log
    │   ├── 2020-06-14.log
    │   ├── 2020-06-20.log
    │   ├── 2020-07-07.log
    │   ├── 2020-07-08.log
    │   ├── 2020-07-29.log
    │   ├── 2020-08-10.log
    │   ├── 2020-08-11.log
    │   ├── 2020-09-09.log
    │   ├── 2020-10-13.log
    │   ├── 2020-10-20.log
    │   ├── 2020-10-21.log
    │   ├── 2020-10-22.log
    │   ├── 2020-10-23.log
    │   ├── 2020-10-28.log
    │   ├── 2020-11-12.log
    │   ├── 2020-11-17.log
    │   ├── 2020-11-25.log
    │   ├── 2020-11-29.log
    │   ├── 2020-12-06.log
    │   ├── 2020-12-07.log
    │   ├── 2020-12-23.log
    │   ├── 2021-01-05.log
    │   ├── 2021-01-16.log
    │   ├── 2021-01-17.log
    │   ├── 2021-04-23.log
    │   ├── 2021-04-24.log
    │   ├── 2021-04-26.log
    │   ├── 2021-04-28.log
    │   ├── 2021-05-10.log
    │   ├── 2021-05-11.log
    │   ├── 2021-05-14.log
    │   ├── 2021-05-15.log
    │   ├── all_points.py
    │   └── sprint_points.py
    ├── pytest.ini
    ├── requirements.txt
    └── tests
        ├── __init__.py
        ├── __pycache__
        │   └── __init__.cpython-36.pyc
        ├── report
        │   ├── assets
        │   │   └── style.css
        │   └── report.html
        ├── test_F10
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_f10.cpython-36-PYTEST.pyc
        │   └── test_f10.py
        ├── test_a_board
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_a_board.cpython-36-PYTEST.pyc
        │   │   ├── test_a_board.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_little_a_a.cpython-36-PYTEST.pyc
        │   │   ├── test_little_a_a.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_little_a_b.cpython-36-PYTEST.pyc
        │   │   └── test_little_a_b.cpython-36-pytest-6.1.1.pyc
        │   ├── report
        │   │   ├── assets
        │   │   │   └── style.css
        │   │   └── report.html
        │   ├── test_a_board.py
        │   ├── test_little_a_a.py
        │   └── test_little_a_b.py
        ├── test_activity_bull
        │   ├── __init__.py
        │   ├── __pycache__
        │   └── activity_bull.py
        ├── test_ai_report
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_report.cpython-36-PYTEST.pyc
        │   │   └── test_strategy.cpython-36-PYTEST.pyc
        │   ├── report.py
        │   └── strategy.py
        ├── test_ai_stock_monitor
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_bankuai.cpython-36-PYTEST.pyc
        │   │   ├── test_bankuai.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_gegu.cpython-36-PYTEST.pyc
        │   │   └── test_gegu.cpython-36-pytest-6.1.1.pyc
        │   ├── report
        │   │   ├── assets
        │   │   │   └── style.css
        │   │   └── report.html
        │   ├── test_bankuai.py
        │   └── test_gegu.py
        ├── test_basic_data
        │   └── __pycache__
        │       ├── __init__.cpython-36.pyc
        │       └── test_indicdata.cpython-36-PYTEST.pyc
        ├── test_big_v
        │   └── __pycache__
        │       ├── __init__.cpython-36.pyc
        │       └── test_big_v.cpython-36-PYTEST.pyc
        ├── test_box
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_best_increase.cpython-36-pytest-6.1.1.pyc
        │   ├── test_best_increase.py
        │   └── test_box.py
        ├── test_calendar
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_calendar.cpython-36-PYTEST.pyc
        │   └── test_calendar.py
        ├── test_clues
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_clues.cpython-36-PYTEST.pyc
        │   └── test_clues.py
        ├── test_daketang
        │   ├── __init__.py
        │   └── test_daketang.py
        ├── test_data
        │   ├── __init__.py
        │   └── test_data.py
        ├── test_fund
        │   ├── __init__.py
        │   ├── test_fund.py
        │   └── test_fund_returnCurve.py
        ├── test_geguzhenduan
        │   ├── __init__.py
        │   └── test_geguzhenduan.py
        ├── test_gold_announcement
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_annoucement_performance.cpython-36-PYTEST.pyc
        │   │   ├── test_gold_announcement.cpython-36-PYTEST.pyc
        │   │   └── test_origin_annoucement.cpython-36-PYTEST.pyc
        │   ├── test_annoucement_performance.py
        │   ├── test_gold_announcement.py
        │   └── test_origin_annoucement.py
        ├── test_group
        │   ├── __init__.py
        │   └── test_group.py
        ├── test_hangyelundong
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_daily.cpython-36-PYTEST.pyc
        │   │   ├── test_daily.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_prediction.cpython-36-PYTEST.pyc
        │   │   ├── test_prediction.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_record.cpython-36-PYTEST.pyc
        │   │   └── test_record.cpython-36-pytest-6.1.1.pyc
        │   ├── test_daily.py
        │   ├── test_prediction.py
        │   ├── test_prosperity.py
        │   └── test_record.py
        ├── test_home
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_homepage.cpython-36-PYTEST.pyc
        │   │   └── test_message.cpython-36-PYTEST.pyc
        │   ├── test_homepage.py
        │   └── test_message.py
        ├── test_home_feed
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_cattle_configured.cpython-36-PYTEST.pyc
        │   │   ├── test_cattle_operation.cpython-36-PYTEST.pyc
        │   │   ├── test_column_mobile.cpython-36-PYTEST.pyc
        │   │   ├── test_homepage_feed.cpython-36-PYTEST.pyc
        │   │   ├── test_mobile_feed.cpython-36-PYTEST.pyc
        │   │   ├── test_roboStore_goods.cpython-36-PYTEST.pyc
        │   │   ├── test_roboStore_show.cpython-36-PYTEST.pyc
        │   │   ├── test_team.cpython-36-PYTEST.pyc
        │   │   ├── test_tool_info.cpython-36-PYTEST.pyc
        │   │   ├── test_wudi_feed.cpython-36-PYTEST.pyc
        │   │   └── test_yanbaoyouhua.cpython-36-PYTEST.pyc
        │   ├── test_cattle_configured.py
        │   ├── test_cattle_operation.py
        │   ├── test_column_mobile.py
        │   ├── test_homepage_feed.py
        │   ├── test_mobile_feed.py
        │   ├── test_roboStore_goods.py
        │   ├── test_roboStore_show.py
        │   ├── test_team.py
        │   ├── test_tool_info.py
        │   ├── test_wudi_feed.py
        │   └── test_yanbaoyouhua.py
        ├── test_industry
        │   ├── __init__.py
        │   └── test_hangyeyilai.py
        ├── test_level2
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_level2.cpython-36-PYTEST.pyc
        │   └── test_level2.py
        ├── test_luoboStore
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_chenhuijingu.cpython-36-PYTEST.pyc
        │   │   ├── test_fenxishi.cpython-36-PYTEST.pyc
        │   │   ├── test_lihaoxiaoxi.cpython-36-PYTEST.pyc
        │   │   ├── test_luoboStore.cpython-36-PYTEST.pyc
        │   │   ├── test_luoboStore.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_magic_trend.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_pay_product.cpython-36-PYTEST.pyc
        │   │   ├── test_pay_product.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_strategy.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_tuoshuiyanbao.cpython-36-PYTEST.pyc
        │   │   ├── test_waiziliuxiang.cpython-36-PYTEST.pyc
        │   │   └── test_yixianyouzi.cpython-36-PYTEST.pyc
        │   ├── report
        │   │   ├── assets
        │   │   │   └── style.css
        │   │   └── report.html
        │   ├── test_chenhuijingu.py
        │   ├── test_fenxishi.py
        │   ├── test_jigoudiaoyan.py
        │   ├── test_lihaoxiaoxi.py
        │   ├── test_luoboStore.py
        │   ├── test_magic_trend.py
        │   ├── test_pay_product.py
        │   ├── test_strategy.py
        │   ├── test_tuoshuiyanbao.py
        │   ├── test_waiziliuxiang.py
        │   └── test_yixianyouzi.py
        ├── test_magic_trend
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_magic_trend.cpython-36-PYTEST.pyc
        │   └── test_magic_trend.py
        ├── test_market_index
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_HKStock.cpython-36-PYTEST.pyc
        │   │   ├── test_STARMarket.cpython-36-PYTEST.pyc
        │   │   ├── test_chuangyeban.cpython-36-PYTEST.pyc
        │   │   ├── test_hottheme.cpython-36-PYTEST.pyc
        │   │   ├── test_hushen.cpython-36-PYTEST.pyc
        │   │   ├── test_index_adv.cpython-36-PYTEST.pyc
        │   │   ├── test_market_plate.cpython-36-PYTEST.pyc
        │   │   ├── test_moneyFlow.cpython-36-PYTEST.pyc
        │   │   ├── test_new_market_adv.cpython-36-PYTEST.pyc
        │   │   ├── test_shangzheng.cpython-36-PYTEST.pyc
        │   │   ├── test_shangzheng50.cpython-36-PYTEST.pyc
        │   │   ├── test_shenzheng.cpython-36-PYTEST.pyc
        │   │   ├── test_stock_adv.cpython-36-PYTEST.pyc
        │   │   ├── test_theme_plate.cpython-36-PYTEST.pyc
        │   │   ├── test_xiaoAkanpan.cpython-36-PYTEST.pyc
        │   │   └── test_zhongzheng500.cpython-36-PYTEST.pyc
        │   ├── test_HKStock.py
        │   ├── test_STARMarket.py
        │   ├── test_chuangyeban.py
        │   ├── test_hottheme.py
        │   ├── test_hushen.py
        │   ├── test_index_adv.py
        │   ├── test_market_plate.py
        │   ├── test_moneyFlow.py
        │   ├── test_new_market_adv.py
        │   ├── test_shangzheng.py
        │   ├── test_shangzheng50.py
        │   ├── test_shenzheng.py
        │   ├── test_stock_adv.py
        │   ├── test_theme_plate.py
        │   ├── test_xiaoAkanpan.py
        │   └── test_zhongzheng500.py
        ├── test_module_demo
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_sample.cpython-36-PYTEST.pyc
        │   └── test_sample.py
        ├── test_moneyflow
        │   ├── __init__.py
        │   ├── test_dazongjiaoyi.py
        │   ├── test_gangziliuxiang.py
        │   ├── test_longhubang.py
        │   ├── test_northflow.py
        │   ├── test_rongzirongquan.py
        │   ├── test_zijinerqi.py
        │   └── test_zijinliuxiang.py
        ├── test_monitor
        │   ├── __init__.py
        │   └── test_monitor.py
        ├── test_morning_paper1
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── report.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_morning_paper.cpython-36-PYTEST.pyc
        │   │   ├── test_morning_paper.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_wanbao.cpython-36-PYTEST.pyc
        │   │   └── test_wanbao.cpython-36-pytest-6.1.1.pyc
        │   ├── report
        │   │   ├── assets
        │   │   │   └── style.css
        │   │   └── report.html
        │   ├── report.py
        │   ├── test_morning_paper.py
        │   └── test_wanbao.py
        ├── test_news
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_news_commend.cpython-36-PYTEST.pyc
        │   │   ├── test_news_hot.cpython-36-PYTEST.pyc
        │   │   ├── test_news_search.cpython-36-PYTEST.pyc
        │   │   └── test_news_weekly.cpython-36-PYTEST.pyc
        │   ├── test_news_commend.py
        │   ├── test_news_hot.py
        │   ├── test_news_search.py
        │   └── test_news_weekly.py
        ├── test_personal_stock
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_self_hot_stock.cpython-36-PYTEST.pyc
        │   │   ├── test_self_stock_detail_mkt_statistics.cpython-36-PYTEST.pyc
        │   │   ├── test_self_stock_info.cpython-36-PYTEST.pyc
        │   │   ├── test_self_stock_market.cpython-36-PYTEST.pyc
        │   │   └── test_self_stock_morning_count.cpython-36-PYTEST.pyc
        │   ├── test_self_hot_stock.py
        │   ├── test_self_stock_detail_mkt_statistics.py
        │   ├── test_self_stock_info.py
        │   ├── test_self_stock_market.py
        │   └── test_self_stock_morning_count.py
        ├── test_pic_finance_report
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_pic_finance_report_A_detail.cpython-36-PYTEST.pyc
        │   │   ├── test_pic_finance_report_A_detail.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_pic_finance_report_add_comment.cpython-36-PYTEST.pyc
        │   │   ├── test_pic_finance_report_add_comment.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_pic_finance_report_add_stock.cpython-36-PYTEST.pyc
        │   │   ├── test_pic_finance_report_add_stock.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_pic_finance_report_current.cpython-36-PYTEST.pyc
        │   │   ├── test_pic_finance_report_current.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_pic_finance_report_performance.cpython-36-PYTEST.pyc
        │   │   ├── test_pic_finance_report_performance.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_pic_finance_report_view_comment_list.cpython-36-PYTEST.pyc
        │   │   └── test_pic_finance_report_view_comment_list.cpython-36-pytest-6.1.1.pyc
        │   ├── report
        │   │   ├── assets
        │   │   │   └── style.css
        │   │   └── report.html
        │   ├── test_pic_finance_report_A_detail.py
        │   ├── test_pic_finance_report_add_comment.py
        │   ├── test_pic_finance_report_add_stock.py
        │   ├── test_pic_finance_report_current.py
        │   ├── test_pic_finance_report_performance.py
        │   └── test_pic_finance_report_view_comment_list.py
        ├── test_related_chart
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_relationship_spectrum.cpython-36-PYTEST.pyc
        │   └── test_relationship_spectrum.py
        ├── test_report
        │   ├── __init__.py
        │   └── test_report.py
        ├── test_search
        │   ├── __init__.py
        │   ├── test_search.py
        │   └── test_search_feeds.py
        ├── test_similarK
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_similar_Kline.cpython-36-pytest-6.1.1.pyc
        │   └── test_similar_Kline.py
        ├── test_strategy_store
        │   └── __pycache__
        │       ├── __init__.cpython-36.pyc
        │       └── test_strategy.cpython-36-pytest-6.1.1.pyc
        ├── test_tags
        │   ├── __init__.py
        │   ├── test_faxian.py
        │   └── test_tags.py
        ├── test_total_report
        │   ├── __init__.py
        │   └── original_report.py
        ├── test_trainCamp
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_trainCamp_mobile.cpython-36-pytest-6.1.1.pyc
        │   ├── test_trainCamp_mobile.py
        │   └── test_trainCamp_web.py
        ├── test_tujiekechuang
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_tujiekechuang.cpython-36-PYTEST.pyc
        │   │   └── test_tujiekechuang.cpython-36-pytest-6.1.1.pyc
        │   └── test_tujiekechuang.py
        ├── test_waibuxiaoshou
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_tiancheng.cpython-36-PYTEST.pyc
        │   └── test_tiancheng.py
        ├── test_wangpai_Report
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── test_derReportTags.cpython-36-PYTEST.pyc
        │   │   ├── test_searchReport.cpython-36-PYTEST.pyc
        │   │   ├── test_targetChgPct.cpython-36-PYTEST.pyc
        │   │   ├── test_tuoshuiyanbao.cpython-36-PYTEST.pyc
        │   │   └── test_yanbaodaguan.cpython-36-PYTEST.pyc
        │   ├── searchCase.xlsx
        │   ├── test_derReportTags.py
        │   ├── test_searchReport.py
        │   ├── test_targetChgPct.py
        │   ├── test_tuoshuiyanbao.py
        │   └── test_yanbaodaguan.py
        ├── test_xiaoAkanpan
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── test_panhou.cpython-36-PYTEST.pyc
        │   │   ├── test_panhou.cpython-36-pytest-6.1.1.pyc
        │   │   └── test_panqian.cpython-36-PYTEST.pyc
        │   ├── report
        │   │   ├── assets
        │   │   │   └── style.css
        │   │   └── report.html
        │   ├── test_panhou.py
        │   └── test_panqian.py
        └── test_youhuiquan
            ├── __init__.py
            ├── __pycache__
            │   ├── __init__.cpython-36.pyc
            │   ├── test_youhuiquan.cpython-36-PYTEST.pyc
            │   └── test_youhuiquan.cpython-36-pytest-6.1.1.pyc
            └── test_youhuiquan.py

97 directories, 371 files