We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec48586 commit b528967Copy full SHA for b528967
.github/workflows/pytest.yaml
@@ -16,6 +16,6 @@ jobs:
16
- name: Installation depends # 安装依赖
17
run: |
18
pip install -r bobotools/requirements.txt
19
- - name: Start test # 自动化测试
+ - name: Start auto test # 自动化测试
20
21
- pytest -s test.py
+ pytest -s test/test.py
test.py test/test.pytest.py renamed to test/test.py
@@ -2,7 +2,7 @@
2
import sys
3
import glob
4
5
-rootpath = os.path.abspath(os.path.dirname(__file__))
+rootpath = os.path.abspath(os.path.dirname(__file__))+"/../"
6
sys.path.append(rootpath)
7
sys.path.extend(glob.glob(rootpath + "/*"))
8
0 commit comments