config.py 562 Bytes
Newer Older
zhaihuitao committed
1 2 3 4 5 6 7
# -*- coding: utf-8 -*-
"""
# @Time : 2022/3/8 10:35 
# @Author : zhaiht
# @File : config.py 
# @desc :
"""
zhaihuitao committed
8 9 10
import requests
import pytest
import param
zhaihuitao committed
11

zhaihuitao committed
12 13
# Headers = {'Authorization': 'Bearer 3ba9c1c1-b398-472e-8ae4-b621ba52e283',
#           'Content-Type': 'application/json;charset=UTF-8'}
zhaihuitao committed
14 15
url_test = "http://117.50.4.194"
url_prod = "http://gatling.reyun.com"
zhaihuitao committed
16
token_url = "http://gatling.reyun.com/api-u/oauth/user/token"
zhaihuitao committed
17 18 19 20

p2v = "/api-f/batchIm2Video/asyncBatchImg2V"
v2v = "/api-f/video2video/generatedAsync/false"
t2v = "/api-f/text2video/asyncGenerated"
zhaihuitao committed
21 22 23