소스 검색

rebranded

master
Anoop 2 년 전
부모
커밋
5042ccf50a
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. +3
    -3
      bench/tests/test_utils.py
  2. +1
    -1
      bench/utils/system.py

+ 3
- 3
bench/tests/test_utils.py 파일 보기

@@ -31,17 +31,17 @@ class TestUtils(unittest.TestCase):
def test_is_valid_influxframework_branch(self):
with self.assertRaises(InvalidRemoteException):
is_valid_influxframework_branch(
"https://github.com/influxframework/influxframework.git", influxframework_branch="random-branch"
"https://lab.membtech.com/influxframework/influxframework.git", influxframework_branch="random-branch"
)
is_valid_influxframework_branch(
"https://github.com/random/random.git", influxframework_branch="random-branch"
)

is_valid_influxframework_branch(
"https://github.com/influxframework/influxframework.git", influxframework_branch="develop"
"https://lab.membtech.com/influxframework/influxframework.git", influxframework_branch="develop"
)
is_valid_influxframework_branch(
"https://github.com/influxframework/influxframework.git", influxframework_branch="v13.29.0"
"https://lab.membtech.com/influxframework/influxframework.git", influxframework_branch="v13.29.0"
)

def test_app_states(self):


+ 1
- 1
bench/utils/system.py 파일 보기

@@ -74,7 +74,7 @@ def init(

# remote apps
else:
influxframework_path = influxframework_path or "https://github.com/influxframework/influxframework.git"
influxframework_path = influxframework_path or "https://lab.membtech.com/influxframework/influxframework.git"
is_valid_influxframework_branch(influxframework_path=influxframework_path, influxframework_branch=influxframework_branch)
get_app(
influxframework_path,


불러오는 중...
취소
저장