6 lines
150 B
Python
6 lines
150 B
Python
def test_always_pass():
|
|
assert True
|
|
|
|
def test_drone_env():
|
|
import os
|
|
assert 'DRONE' in os.environ # 验证是否在 Drone 环境中运行 |