14 lines
170 B
Python
14 lines
170 B
Python
"""
|
|
简单测试验证环境
|
|
"""
|
|
import pytest
|
|
|
|
|
|
def test_simple():
|
|
"""简单测试"""
|
|
assert True
|
|
|
|
|
|
if __name__ == "__main__":
|
|
pytest.main([__file__, "-v"])
|