File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11import json
2+ import logging
3+ import os
24from unittest .mock import patch
35
46import jsondiff .symbols
5- from prettytable import PrettyTable
6-
77import pytest
8- import logging
8+ from prettytable import PrettyTable
99
1010from lib .api import Api
1111
12- API_URL = "https://playground.console.ves.volterra.io/api"
13- API_TOKEN = "abc123456789"
12+ API_URL = os . environ . get ( "API_URL" )
13+ API_TOKEN = os . environ . get ( "API_TOKEN" )
1414WORKERS = 10
1515USER_SPECIFIED_SITE = "f5xc-aws-ce-test-60"
1616TEST_DATA_ALL_NS_FILE_NAME = "tests/data/all_ns.json"
Original file line number Diff line number Diff line change 99
1010from lib .api import Api
1111
12- API_URL = ""
13- API_TOKEN = ""
12+ API_URL = os . environ . get ( "API_URL" )
13+ API_TOKEN = os . environ . get ( "API_TOKEN" )
1414WORKERS = 10
1515USER_SPECIFIED_SITE = "smeshsiteongoing-singlenode"
1616TEST_DATA_SITE_FILE_NAME = "../json/smeshsiteongoing-singlenode-2.json"
You can’t perform that action at this time.
0 commit comments