浏览代码

can we use exports here?

Getty Ritter 4 年之前
父节点
当前提交
de0d23cc2e
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      .drone.yml

+ 4 - 0
.drone.yml

@@ -10,20 +10,24 @@ steps:
   commands:
   - pip install poetry --user
   - pip install invoke --user
+  - export PATH=/root/.local/bin:PATH
   - poetry config virtualenvs.in-project true --local
   - poetry install
 
 - name: test
   image: python
   commands:
+  - export PATH=/root/.local/bin:PATH
   - inv test
 
 - name: typecheck
   image: python
   commands:
+  - export PATH=/root/.local/bin:PATH
   - poetry run inv tc
 
 - name: format
   image: python
   commands:
+  - export PATH=/root/.local/bin:PATH
   - poetry run inv checkfmt