Commit 3157e296 by zhaihuitao

update

parent 4dbfa6f2
...@@ -26,7 +26,7 @@ click_url = 'http://uri6.com/tkio/Er6BFna' ...@@ -26,7 +26,7 @@ click_url = 'http://uri6.com/tkio/Er6BFna'
# prod_event_url = 'http://log.trackingio.com' # prod_event_url = 'http://log.trackingio.com'
prod_event_url = 'http://10.3.20.42:8080' prod_event_url = 'http://10.3.20.42:8080'
test_event_url = 'http://10.3.20.42:8080' test_event_url = 'http://10.3.20.42:8080'
prod_appkey = "57ed2dd31596bb4682471e82c0c73c1a" prod_appkey = "0d401839250deff23daf62fd49a444cb"
# prod_appkey = "57ed2dd31596bb4682471e82c0c73c1a" # prod_appkey = "57ed2dd31596bb4682471e82c0c73c1a"
event_interface = dict(install='/receive/tkio/install', loggedin='/receive/tkio/loggedin', event_interface = dict(install='/receive/tkio/install', loggedin='/receive/tkio/loggedin',
pageduration='/receive/tkio/pageduration', payment='/receive/tkio/payment', pageduration='/receive/tkio/pageduration', payment='/receive/tkio/payment',
......
...@@ -146,7 +146,7 @@ params_login = { ...@@ -146,7 +146,7 @@ params_login = {
'_ip': randomUtil.r.randip(), '_ip': randomUtil.r.randip(),
'_ryos': "Android", '_ryos': "Android",
"_lib_version": "1.5.0", "_lib_version": "1.5.0",
# '_rydevicetype': rydevicetype, '_rydevicetype': "",
'_timestamp': int(round(time.time() * 1000)), '_timestamp': int(round(time.time() * 1000)),
# "_idfa": "00000000-0000-0000-0000-000000000000", # "_idfa": "00000000-0000-0000-0000-000000000000",
# "_idfv": "" # "_idfv": ""
......
# -*- coding: utf-8 -*-
"""
@author:zhaiht
@file: run_all_cases.py
@time: 2020/10/17 15:08
@desc:
"""
import unittest
import os
if __name__ == '__main__':
base_path = os.path.dirname(os.path.abspath(__file__))
testdir = os.path.join(base_path, 'android_events')
discover = unittest.defaultTestLoader.discover(testdir, 'test*.py')
runner = unittest.TextTestRunner(verbosity=2)
runner.run(discover)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment